Skip to content

Instantly share code, notes, and snippets.

@adamhut
Forked from grimzy/MySQL
Created June 29, 2022 18:52
Show Gist options
  • Save adamhut/e3bf52dbf1748e2f71a08d0cd0886fd1 to your computer and use it in GitHub Desktop.
Save adamhut/e3bf52dbf1748e2f71a08d0cd0886fd1 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