Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a CSV file that when I'm opening it, it gives me the "File not loaded completely". I want to make a script that dynamically imports to MySQL this file. I'm using this script:

$sql = "load data local infile 'filename.csv' into table myTable `fields terminated by ','`
enclosed by ''
lines terminated by '\n'
(col1, col2, col3)";

It works for other csv files but, for this file with the error it doesn't.

share|improve this question
Try renaming the csv into a txt file....or split the csv file ;) – Robert Rozas Feb 15 at 13:46
and how do I split the file? :) – yoX64 Feb 15 at 13:53
MySQL gives you that error when you are running that script? Or does some other application give you that error when you are opening the file? Is there anything else to the error message than "File not loaded completely"? – Tom Feb 15 at 13:53
Is the file a lot larger than the other files that work? – Tom Feb 15 at 13:53
Yes. The file is a lot larger than the others that work. – yoX64 Feb 15 at 13:55
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.