Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Duplicate records

Re: Duplicate records

From: Gary T. Smith <gsmith_at_clientserver.com>
Date: 1997/08/15
Message-ID: <33F50ED2.771E@clientserver.com>#1/1

Sushama Belkhode wrote:
>
> Can anyone tell me how to weed out duplicate records from a large(> 1
> million records) table quickly and efficiently?
>
> Thanks in advance
>
> Sushama

If you know what field is duplicated, then:

select duplicate_field
from table
group by duplicated_field
having count(*) > 1;

This should work for you. Received on Fri Aug 15 1997 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US