MySQL Forums
Forum List  »  Backup

Re: mysqldump acting strange
Posted by: Bob Field
Date: May 14, 2006 10:41AM

Those are not error messages. Those are SQL commands conditionally commented so older versions that do not support them will not try to execute them. Also you are using an incorrect command to load the dump file.

To dump, use the mysqldump progrma:

mysqldump -u root -h localhost dbname > dbfile.sql

To load, use the mysql command-line utility:

mysql -u root -h localhost dbname < dbfile.sql

Options: ReplyQuote


Subject
Views
Written By
Posted
4529
May 13, 2006 09:41PM
Re: mysqldump acting strange
2440
May 14, 2006 10:41AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.