More mysqldump commands.

I also modified the previous commands so passwords don't show in the
history.
This commit is contained in:
Amgad Suliman 2013-08-25 11:48:19 +04:00
parent e6d5d9b8dc
commit 6083e2d70b
1 changed files with 9 additions and 3 deletions

View File

@ -1,8 +1,14 @@
# To dump a database to a file:
mysqldump -uusername -ppassword the-database > db.sql
mysqldump -uusername -p the-database > db.sql
# To dump a database to a .tgz file:
mysqldump -uusername -ppassword the-database | gzip -9 > db.sql
mysqldump -uusername -p the-database | gzip -9 > db.sql
# To dump all databases to a file:
mysqldump -uusername -ppassword --all-databases > all-databases.sql
mysqldump -uusername -p --all-databases > all-databases.sql
# To export the database structure only:
mysqldump --no-data -uusername -p the-database > dump_file
# To export the database data only:
mysqldump --no-create-info -uusername -p the-database > dump_file