Advertisement
Guest User

Untitled

a guest
Jun 16th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. mysqldump <DATABASE> --host=<IP_HOST> \
  2. --user=<USER> \
  3. --password=<PASSWORD> \
  4. --port=3306 \
  5. --single-transaction \
  6. --routines \
  7. --triggers \
  8. --compress \
  9. --no-set-names \
  10. --skip-add-locks \
  11. --disable-keys \
  12. --skip-comments \
  13. --no-create-db \
  14. --no-data > <DESTINATION_FILENAME>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement