Created
July 14, 2014 12:56
-
-
Save mpfund/1f9ea33322fdf75b6d49 to your computer and use it in GitHub Desktop.
Mysql Backup & Restore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "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