Hi,
Here is what I do to rid of dupes:
Create a table with same structure,
I do this with
select top 1 into temptab from maintable
truncate temptab
insert into temptab
(Customerid)
(select distinct customerid from maintable)
Update temptab
set temptab.field1=maintable.field1,
temptab.field2=maintable.field2
from temptab, maintable
where temptab.customerid=maintable.customerid
You can then rename the table to maintable.
Then set primary key.
I would keep the main table to make sure you did not remove any data you wanted to keep.
HTH, Chuck