MySQL Forums
Forum List  »  Newbie

importng data
Posted by: robert davies
Date: April 19, 2005 10:28AM

i have the query

LOAD DATA
INFILE 'C:/web/registers/23-03-2005.txt'
INTO TABLE attendance
FIELDS TERMINATED BY ';'
OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '|'
;

it seems to work only when there is one record in the file(23-03-2005.txt) when i add more than one record it says there is an error

1062 duplicate entry '0-0' for key 1

theres no duplicate records in the import file i think it might have somthing to do with the table attendance having a joint primary key the first and second fields ie the data in the file looks like

1001;200147737;(a date); present; (atimestamp);

that works

1001;200147737;(a date); present; (atimestamp);
1001;200123213;(a date); present; (atimestamp);

this does not

any ideas?

Options: ReplyQuote


Subject
Written By
Posted
importng data
April 19, 2005 10:28AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.