MySQL backup not backing up all tables

2004-06-23 Thread Danny Smitherman
I am having trouble with a nightly backup of our MySQL database. Using the
mysqldump command, we dump our entire database to a backup directory. But
consistently the backup file contains only 33 of the 88 tables in the
database. The 33 getting backed up are the first 33 of the 88 as sorted
alphabetically by table name.

Here are the relevant lines in the backup script:

mysqldump --opt ACA /home/sites/home/users/admin/dump/ACA/`date
--date '1 day ago' +%m%d`.all.ACA
mysqldump mysql /home/sites/home/users/admin/dump/ACA/`date --date '1 day
ago' +%m%d`.mysql

I'm a newbie with MySQL, so I don't know what other info to provide.

I appreciate your help.
 
Danny S.


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



MySQL backup not backing up all tables

2004-06-21 Thread Danny Smitherman
I am having trouble with a nightly backup of our MySQL database. Using the
mysqldump command, we dump our entire database to a backup directory. But
consistently the backup file contains only 33 of the 88 tables in the
database. The 33 getting backed up are the first 33 of the 88 as sorted
alphabetically by table name.

Here are the relevant lines in the backup script:

mysqldump --opt ACA /home/sites/home/users/admin/dump/ACA/`date
--date '1 day ago' +%m%d`.all.ACA
mysqldump mysql /home/sites/home/users/admin/dump/ACA/`date --date '1
day ago' +%m%d`.mysql

I'm a newbie with MySQL, so I don't know what other info to provide.

I appreciate your help.
 
Danny S.

*
Adventure Cycling Association
Inspiring people of all ages to travel by bicycle.
800/755-2453, 406/721-1776
www.adventurecycling.org 


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Restoring database doesn't restore all tables

2004-01-23 Thread Danny Smitherman
I could use some help with restoring a backup.

I have a backup file, generated using the mysqldump command. This file is 
approximately one gigabyte in size. I use the following command to restore this backup 
file:

mysql -u root DevDBs  New.all.aca

When the command is finished executing, I check my DevDBs database, and it has been 
updated, but not all tables that I'm expecting to be restored have been restored. 
Further, the DevDBs directory has only about 250 megabytes of data, rather than the 
one gigabyte I am expecting.

Any help would be appreciated.

Danny