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: De-duplication of large table

Re: De-duplication of large table

From: no spam <no_at_spam.com>
Date: Thu, 18 Nov 1999 22:40:29 GMT
Message-ID: <xf%Y3.32983$m4.112819766@news.magma.ca>


oops change first sql statement to read

delete from test a
where rowid = ( select max(rowid)

                             from test b
                              where b.rec_num = a.rec_num ) and
            rowid <> ( select min(rowid)
                             from test b
                              where b.rec_num = a.rec_num )




Received on Thu Nov 18 1999 - 16:40:29 CST

Original text of this message

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