Skip to content

Instantly share code, notes, and snippets.

@wellington1993
Last active August 6, 2021 19:47
Show Gist options
  • Save wellington1993/bf51b87bcfe921f309cbb341839b1270 to your computer and use it in GitHub Desktop.
Save wellington1993/bf51b87bcfe921f309cbb341839b1270 to your computer and use it in GitHub Desktop.
Mysql Dump No Lock Easy
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