本文介绍了如何将sql.gz文件加载到数据库中?(输入)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这对吗?
mysql -uroot -ppassword mydb < myfile.sql.gz
推荐答案
不,不是.正确的方法是
No, it isn't. The right way would be
zcat myfile.sql.gz | mysql -u root -ppassword mydb
请注意,如果使用-p语法,则 -p
和 password
之间不能有空格,请参考 http://dev.mysql.com/doc/refman/5.5/en/mysql-command-options.html#option_mysql_password
Note there can be no space between the -p
and password
if using the -p syntax, refer http://dev.mysql.com/doc/refman/5.5/en/mysql-command-options.html#option_mysql_password
这篇关于如何将sql.gz文件加载到数据库中?(输入)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!