. It's
a command line utility that works the same way on Windows, UNIX, Linux, etc. and
is fairly easy to use. In the following example the mysqldump utility will take
in your username, password, computer name, and dump the DDL and data from your
database to a text file. Open up a command prompt (for Windows, go to Start >
Run > and type in 'cmd'). Now type in the below statement.
mysqldump -u myUsername -p --host=localhost myDatabase > someTextFile.sql
If you hadn't added c:\mysql\bin to your path you would need to run this command:
c:\mysql\bin\mysqldump -u myUsername -p --host=localhost myDatabase > someTextFile.sql
And that's about all you need to do to take exports/imports
in MySQL!
As always, if you have trouble, please post your comments on this
web page.
~ Troy Campano ~