Posted by
admin on Sep 16, 2011 in
Databases,
MySQL |
0 comments
To export a MySQL database into a dump file, simply type the following command syntax in the shell.
mysqldump -u username –ppassword database_name > dump.sql
Replace username, password, database_name and dump.sql as your needs. All data, tables, structures and database of database_name will be backed up...