mirror of https://github.com/cheat/cheat.git
More mysqldump commands.
I also modified the previous commands so passwords don't show in the history.
This commit is contained in:
parent
e6d5d9b8dc
commit
6083e2d70b
|
@ -1,8 +1,14 @@
|
||||||
# To dump a database to a file:
|
# 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:
|
# 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:
|
# 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
|
Loading…
Reference in New Issue