Skip to content

Instantly share code, notes, and snippets.

@mpfund
Created July 14, 2014 12:56
Show Gist options
  • Save mpfund/1f9ea33322fdf75b6d49 to your computer and use it in GitHub Desktop.
Save mpfund/1f9ea33322fdf75b6d49 to your computer and use it in GitHub Desktop.
Mysql Backup & Restore
"C:\Program Files (x86)\MySQL\MySQL Workbench 6.0 CE\mysqldump.exe" -u [username] -p[password] --host=[hostname] --default-character-set=utf8 [dbname] > dbname.sql
"C:\Program Files (x86)\MySQL\MySQL Workbench 6.0 CE\mysql" -u [username] -p[password] --host=[hostname] --default-character-set=utf8 [dbname] < dbname.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment