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

I am trying to export an ODS file to CSV, but when I import into phpmyadmin - I get "Invalid field count in CSV input on line 1."

File (it has more than two lines but the scheme is the same):

"Administração da Guarda Nacional Republicana"
"Administração de Publicidade e Marketing"

table:

CREATE TABLE IF NOT EXISTS `profession` (
  `id_profession` int(11) NOT NULL,
  `profession` varchar(45) DEFAULT NULL,
  `formation_area_id_formation_area` int(11) NOT NULL,
  PRIMARY KEY (`id_profession`),
  UNIQUE KEY `profession_UNIQUE` (`profession`),
  KEY `fk_profession_formation_area1` (`formation_area_id_formation_area`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

I never do something similar, probably i need to specify the columns. the csv only have one column and the table have three. In this case the file input belongs to profession column

share|improve this question
Obviously, the data is in the wrong format, and required fields are missing. You can't import it. – nbt May 29 '11 at 18:27
3  
andrewodendaal.com/… – OMG Ponies May 29 '11 at 18:30
so, i can't import a specific column? must be the three fields in this case? – user455318 May 29 '11 at 18:31

3 Answers

up vote 2 down vote accepted

If you want this to import into that table you have 2 choices:

1) Add a comma before and after the data in every row of your file, or

2) Delete the first and third columns in your table, import the data and then add the 2 columns you deleted back.

share|improve this answer

If you use phpMyAdmin, then you are allowed to specify column names. When logged into the desired database:

  1. Select the table you want to import to.
  2. Click the Import tab.
  3. Under Format of imported file, select CSV.
  4. In Column names, write out a comma separated list of the columns you want the data imported to.

You can also use mysqlimport if you prefer the shell. For Example: shell>mysqlimport --columns=column1,column2 dbname imptest.txt

share|improve this answer

Make sure your uploading csv file only not excel file and then follow the below steps

1 Import

2 Browse for your csv file.

3 Select CSV using LOAD DATA (rather than just CSV)

4 Change “Fields terminated by” from “;” to “,”

5 Make sure “Use LOCAL keyword” is selected.

Click “Go”
share|improve this answer

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.