Last active
August 6, 2021 19:47
-
-
Save wellington1993/bf51b87bcfe921f309cbb341839b1270 to your computer and use it in GitHub Desktop.
Mysql Dump No Lock Easy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysqldump -v --quick --single-transaction=false --lock-tables=false --skip-lock-tables --routines --triggers \ | |
--flush-privileges --hex-blob --extended-insert=FALSE --default-character-set=utf8 \ | |
--no-tablespaces --complete-insert --compress \ | |
-h _yourserver_ -u _youruser_ -p _yourdb_ >> public/_yourdb_.sql | |
# --column-statistics=0 | |
# --ignore-table=name_of_db.name_of_table | |
# --no-data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment