Skip to content

Instantly share code, notes, and snippets.

@jiceb
Created November 19, 2012 09:28
Show Gist options
  • Select an option

  • Save jiceb/4109821 to your computer and use it in GitHub Desktop.

Select an option

Save jiceb/4109821 to your computer and use it in GitHub Desktop.
MySQL Dump All Databases and Create (or Recreate) them on Import
# export
mysqldump -u root -p --all-databases > all_dbs.sql
# import
mysql -u root -p < all_dbs.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment