mirror of
https://github.com/cheat/cheat.git
synced 2024-11-13 07:31:07 +01:00
9 lines
286 B
Text
9 lines
286 B
Text
|
To dump a database to a file:
|
||
|
mysqldump -uusername -ppassword the-database > db.sql
|
||
|
|
||
|
To dump a database to a .tgz file:
|
||
|
mysqldump -uusername -ppassword the-database | gzip -9 > db.sql
|
||
|
|
||
|
To dump all databases to a file:
|
||
|
mysqldump -uusername -ppassword --all-databases > all-databases.sql
|