Skip to content

Instantly share code, notes, and snippets.

@jonathanstegall
Created May 13, 2015 17:18
Show Gist options
  • Save jonathanstegall/e84bcde4b8d15dfef240 to your computer and use it in GitHub Desktop.
Save jonathanstegall/e84bcde4b8d15dfef240 to your computer and use it in GitHub Desktop.
MySQL Shell: dump item and gzip it
nohup nice mysqldump -uusername -ppassword databasename tablename | gzip -9 > tablename.sql.gz
@jonathanstegall
Copy link
Author

tablename is optional; without it, it will dump the whole database

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment