Created
November 8, 2012 04:10
-
-
Save cantin/4036735 to your computer and use it in GitHub Desktop.
msyql dump
This file contains 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
--export | |
mysql -u user -p password database_name > export.sql | |
mysql -u user -p password database_name table_name > export.csv | |
--import | |
mysql -u user -p password | |
source export.sql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment