ORACLE重複資料刪除資料的一種高效的方法

來源:互聯網
上載者:User
重複資料刪除資料的一種高效的方法

表demo是重複拷貝自dba_objects,有88萬左右,不重複的是27323,沒有索引
方法一:delete   from   demo   a   where   a.rowid   <>   (select   max(rowid)   from   demo   b   where
                                                                                                                                            b.object_id=a.object_id);
                        耗時:幾個小時以上


方法二:   delete   from   demo   where   rowid   in  
                            (select   rid   from  
                                                    (select   rowid   rid,row_number()   over(partition   by   object_id   order   by   rowid)   rn
                                                          from   demo)
                              where   rn   <>   1   );
      耗時:30秒

方法三:   create   table   demo2   as  
                            select   object_id,owner...   from
                                              (select   demo.*,row_number()   over(partition   by   object_id   order   by   rowid)   rn   from   demo)
                                                  where   rn   =   1;
                            truncate   table   demo;   insert   into   demo   select   *   from   demo2;   drop   table   demo2;
共耗時:   10秒,適合大資料量的情況,產生更少復原量; 
 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.