最快的方式删除oracle数据

来源:互联网 发布:大数据市场前景 编辑:程序博客网 时间:2024/05/22 06:29


declare 
type refcursor is ref cursor;
v_cursor refcursor;
type array_rowid is table of rowid;
type array_value is table of varchar2(20);
a_rowid    array_rowid  := array_rowid();
a_value   array_value := array_value();

begin     
open v_cursor for 'select   rowid from (
select rowid from  tse_payments h order by h.d_createdon asc ) where  rownum<10000';
 loop
    fetch v_cursor bulk collect into a_rowid limit 5000;
 if a_rowid.count() > 0 then
      forall i in a_rowid.first .. a_rowid.last
       DELETE FROM tse_payments t where t.rowid=a_rowid(i);
 end if;
    exit when v_cursor%notfound;
  end loop;
  close v_cursor;
end;
/

0 0
原创粉丝点击