show/hide this revision's text 2 added 254 characters in body

Revised:
Since you don't want to insert twice, could you:

Drop the primary key constraint.
Insert all data into the table
Find any duplicates, and remove them
Then re-add the primary key constraint

Previous reply: Insert the data into a duplicate of the table without the primary key constraint.

Then run a query on it to determine rows which have duplicate values for the rpimary key column.

select count(*), <Primary Key>
from table
group by <Primary Key>
having count(*) > 1
show/hide this revision's text 1

Insert the data into a duplicate of the table without the primary key constraint.

Then run a query on it to determine rows which have duplicate values for the rpimary key column.

select count(*), <Primary Key>
from table
group by <Primary Key>
having count(*) > 1