I have a problem loading contents to the green plum table using COPY command. What i have is three column table lets say A , B , C and the table should not entertain duplicate elements. So i have made a composite key clubbing the above three

PRIMARY KEY ( A , B , C )

But the input file which I am using to load the table, has duplicate entries. All I want is, the COPY command to filter off the duplicate elements and continue loading the data. But in my case whenever the COPY encounters a duplicate entry, it aborts the loading. Any leads on how to proceed??

Thanks

Ganesh.R

link|improve this question

0% accept rate
feedback

1 Answer

COPY doesn't work like that.

The first thing I'd try is the system sort.

sort -u old_filename > new_filename

The '-u' argument tells sort to output only unique lines.

link|improve this answer
Thanks U very much :-) – Ganesh R Aug 5 '11 at 9:44
On SO, we express thanks by upvotes and by accepting answers. See meta.stackoverflow.com/q/5234/161666 Although you haven't asked many questions, you also haven't accepted any answers yet. On SO, that tends to make people less willing to help you in the future. – Catcall Aug 5 '11 at 11:21
feedback

Your Answer

 
or
required, but never shown

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