Easiest way would be to do a query similar to the following -
SELECT fieldname, count(*)
FROM tablename
GROUP BY fieldname
HAVING count(*) > 1
where fieldname is the name of the field that has the duplicates in.
That should give you the records that are duplicated.
LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks