MySQL Dump Load
If you want to take a backup of your MySQL database or move it to another server, here's the easiest way. Run the following from a cmd, terminal or bash session, do not use the mysql command line tool.
DUMP
mysqldump -h hostname -u user --password=password databasename > filename
LOAD
mysql -h hostname -u user --password=password databasename < filename
Cheers
Ryan Partington


