Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: How to find Duplicate records
> Hi
>
> I am trying to find out the duplicate records in the table which
> contains over 10 million records. Could you please let me know the
> easiest and quickest way to get it done.
>
the easiest way is (but not the quickest !)
select duplicate_field, count(duplicate_field)
from 10_Million_Table
group by duplicate_field
having count(duplicate_field)>1
Regards,
Falko Rotter
Rotter & Kalweit Softwaredesign GbR
Friemarer Straße 38
99867 Gotha
GERMANY
mail: news_at_falko-rotter.de
Received on Tue Jul 24 2001 - 04:04:07 CDT
![]() |
![]() |