Created
April 19, 2012 01:27
-
-
Save pinzolo/2417736 to your computer and use it in GitHub Desktop.
巨大なダンプファイルから MySQL を復元する
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
$ zcat huge_dump_file.gz | mysql -u [user] -p[password] [database] | |
$ nohup zcat huge_dump_file.gz | mysql -u [user] -p[password] [database] > result & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment