View Single Post
  #2  
Old 02-13-2002, 07:31 PM
madborg
Banned
 
Join Date: Jan 2002
Posts: 322
Default

nothing jumps out at me.

You say you had it work and now it is not -- correct?
Then maybe its a good idea to drop your database, create it, source db.sql and see what you get.

If everything is fine, then go ahead and add in the item db and whatever else you add.

This reminds me:

there is a sqldump command that can be used

mysqlhotcopy is for doing backups for for quick dumps and restores do:

mysqldump --opt database > yourbackup.sql

then to restore

mysql database <yourbackup.sql

or if you like the "source" command:

mysql -e "source /locationofyourdump/yourbackup.sql" database
Reply With Quote