Skip to content

Instantly share code, notes, and snippets.

@grimzy
Created July 12, 2017 13:34
Show Gist options
  • Save grimzy/35d92bbe7c5822f0523fe77a39eed484 to your computer and use it in GitHub Desktop.
Save grimzy/35d92bbe7c5822f0523fe77a39eed484 to your computer and use it in GitHub Desktop.
Copy database
mysqldump -h <source_host> -u <source_user> <source_db> | mysql -h <destination_host> -u <destination_user> <destination_db>
pg_dump -h <source_host> -U <source_user> <source_db> | psql -h <destination_host> -U <destination_user> <destination_db>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment