Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: How do I locate duplicate rows
select <primary key>
from <your table>
group by <primary key>
having count(*) > 1
In article <3A25AD6E.9887FF22_at_sbsalaska.com>,
Anthony Valentine <amv_at_sbsalaska.com> wrote:
> Hello All!
>
> I am trying to add a unique constraint to a table, but I get the
> following error:
>
> ORA-02299: cannot validate (ORACLE.LOS160MASTER_UK) - duplicate keys
> found
>
> Is there any way to get Oracle to tell me which rows contain the
> duplicate keys?
>
> Thanks in advance!
>
> Anthony Valentine
>
>
Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Thu Nov 30 2000 - 14:26:41 CST
![]() |
![]() |