Skip to content

Instantly share code, notes, and snippets.

@vitorjustin
Created November 17, 2021 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vitorjustin/0e3e5c1fb7258611b3819e26f8fb1f3b to your computer and use it in GitHub Desktop.
Save vitorjustin/0e3e5c1fb7258611b3819e26f8fb1f3b to your computer and use it in GitHub Desktop.
MySQL export and import commands
#!/bin/bash
# https://twitter.com/fideloper/status/1460646396172939266/photo/1
# Export from one DB, import into another
mysqldump some_db_name | pv | mysql -h remote-host another_db_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment