MySQL Forums
Forum List  »  Other Migration

Re: How to dump the database configuration?
Posted by: eswar sasi
Date: February 07, 2008 08:58AM

to take the mysql dump


C:\>MYSQLDUMP cfc > sqlFileName.sql -u root -p


dump to restore

mysql -u root -p test1 < test.sql



go to the dumpfile directory

C:\Program Files\MySQL\MySQL Server 5.0\bin>mysql -u root -p test1 < test.sql
Enter password: *****

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: How to dump the database configuration?
3346
February 07, 2008 08:58AM


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.