| How to Export A MySQL Database Structures |
|
|
|
| Thursday, 03 December 2009 12:59 |
If You need to export only the MySQL database's tables’ structures use –no-data switch. mysqldump -u username -ppassword –no-data database_name > dump.sql
|
Comments
You can provide this command as
mysqldump -u {server_usernam e} -p{server_passwo rd} –no-data {database_name} > dump.sql
Where password argument entering without space -p{server_passwo rd}
RSS feed for comments to this post.