位置:海鸟网 > IT > mySQL >

mysql文件太大导入出错的解决方法

mysql文件太大时,导入时经常会出现错误,比如:

No data was received to import. Either no file name was submitted, or the file size exceeded the maximum size permitted by your PHP configuration. See FAQ 1.16



又或者出现这样的错误:

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 4658012 bytes) in D:\AppServ\www\phpMyAdmin\libraries\unzip.lib.php on line 324



这时候除了可以修改php.ini的配置()以外,还可以使用“命令行”方法处理。

假设数据库是"inputData",要导入的数据在"D:\inputData.sql",那么具体操作如下:

开始->运行->cmd
C:\Documents and Settings\Administrator>d:
D:\>mysql -u用户名 -p inputData < inputData.sql
回车后,输入密码,然后导入文件成功