Guest User

Untitled

a guest
Apr 10th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. mysqldump database_name_1 \
  2. --host=address_1 \
  3. --port=3306 \
  4. --user=username_1 \
  5. --password=password_1 \
  6. --single-transaction \
  7. --compress \
  8. --no-create-db \
  9. --skip-add-locks \
  10. --skip-comments | mysql \
  11. --host=address_2 \
  12. --port=3306 \
  13. --user=username_2 \
  14. --password=password_2 database_name_2
Add Comment
Please, Sign In to add comment