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. It contain 1.4 million rows of data, so I am not able to open that csv file in Excel because its limit is about 1 million rows.

Therefore, I want to import this file in MySQL workbench. This csv file contains columns like

"Service Area Code","Phone Numbers","Preferences","Opstype","Phone Type"

I am trying to create a table in MySQL workbench named as "dummy" containing columns like

ServiceAreaCodes,PhoneNumbers,Preferences,Opstyp,PhoneTyp. 

The CSV file is named model.csv. My code in workbench is like this:

LOAD DATA LOCAL INFILE 'model.csv' INTO TABLE test.dummy FIELDS TERMINATED BY ',' lines terminated by '\n';

but I am getting an error like model.CSV file not found

share|improve this question
Which part of the error message is unclear? Is model.csv inside the current directory? – Tim Pietzcker Jul 11 '12 at 9:49

1 Answer

up vote 15 down vote accepted

I guess you're missing the ENCLOSED BY clause

LOAD DATA LOCAL INFILE '/path/to/your/csv/file/model.csv' INTO TABLE test.dummy FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n';

And specify the csv file full path

Load Data Infile - MySQL documentation

share|improve this answer
1  
thank you, am not getting any error in this command.but am get error like model.csv file not found. that file is store in my system desktop – vps Jul 11 '12 at 9:59
sorry I did not read last sentence – Packet Tracer Jul 11 '12 at 10:01
csv file is stored in my system desktop – vps Jul 11 '12 at 10:02
1  
thank u so much. – vps Jul 11 '12 at 10:16
1  
UPDATE: If importing strings with non-standard chars, it is useful to point out the need of "CHARACTER SET utf8" to the statement: LOAD DATA LOCAL INFILE '/path/to/file.csv' INTO TABLE db_name.table_name CHARACTER SET utf8 FIELDS TERMINATED BY ',' ENCLOSED BY '"' lines terminated by '\n'; The target table/columns should also be set to utf-8 – ile May 2 at 9:06
show 1 more comment

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.