Skip to content

Instantly share code, notes, and snippets.

@tricker
Created October 28, 2011 21:03
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 tricker/1323552 to your computer and use it in GitHub Desktop.
Save tricker/1323552 to your computer and use it in GitHub Desktop.
# export data to file
mysqldump -uroot -ppassword hornet > hornet-dump.sql
# Drop database schema
mysqladmin -uroot -ppassword –f drop hornet
# create empty database schema
mysqladmin –uroot –ppassword create hornet
# push dump file into new database schema
mysql -uroot -ppassword hornet < hornet-dump.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment