CSV大文件拆分导入phpMyAdmin

时间:2017-02-08 11:53:03

标签: php mysql csv phpmyadmin

目前我正在尝试通过phpMyAdmin将1.3 GB CSV导入MySQL。

问题: 难以拆分文件然后导入它,在使用Windows程序拆分后,某些列会损坏。

问题: 是否可以将整个内容上传到phpMyAdmin而无需拆分它?

信息 我在phpMyAdmin中有5列,所以CSV也匹配。

1 个答案:

答案 0 :(得分:0)

此类问题可能还面临其他user

根据他的回答,你可以使用。

mysql -u root -p

set global net_buffer_length=1000000; --Set network buffer length to a large byte number

set global max_allowed_packet=1000000000; --Set maximum allowed packet size to a large byte number

SET foreign_key_checks = 0; --Disable foreign key checking to avoid delays,errors and unwanted behaviour

source file.sql --Import your sql dump file

SET foreign_key_checks = 1; --Remember to enable foreign key checks when procedure is complete!

另请查看另一种方法

mysql -u username -p -h hostname databasename < dump.sql