[PHP] Restoring a backup

2001-07-19 Thread Don
Hi, I have a cron script that issues a: mysqldump --opt -ppassword myfile_db /home/ftpadmin/pub/myfile_db.backup Now, I wish to do the opposite, that is, restore it into my database. After issuing a: mysql -p and entering the password, what command do I enter to restore my database from

Re: [PHP] Restoring a backup

2001-07-19 Thread Francis Fillion
mysql -u yourusername -p password myfile_db /home/ftpadmin/pub/myfile_db.backup Don wrote: Hi, I have a cron script that issues a: mysqldump --opt -p myfile_db /home/ftpadmin/pub/myfile_db.backup Now, I wish to do the opposite, that is, restore it into my database. After issuing