Posted by
admin on Sep 16, 2011 in
Databases,
MySQL |
0 comments
For exporting MySQL database’s only the data, use –no-create-info option. The dump will not re-create the database, tables, fields, and other structures when importing.
mysqldump -u username -ppassword –no-create-info database_name > dump.sql
Use this only if you sure that you...