我正在使用 LOAD DATA LOCAL INFILE,它似乎停止在 ~69k 行。
是不是内存限制太低了?缓冲区大小?
Query OK, 68844 rows affected, 65535 warnings (4.20 sec)
Records: 69182 Deleted: 0 Skipped: 338 Warnings: 160539
.csv 文件包含大约 138k 条目,所有条目都已正确转义和封闭。
编辑:Mysql版本:Ver 14.14 Distrib 5.1.50, for Win32 (ia32)
编辑2:命令:
load data local infile 'path/to/file.csv' into table contacts
fields terminated by ','
enclosed by '"'
lines terminated by '\n'
(column1, column2, column3,...)