Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1079891
  • 博文数量: 1647
  • 博客积分: 80000
  • 博客等级: 元帅
  • 技术积分: 9980
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-13 15:15
文章分类

全部博文(1647)

文章存档

2011年(1)

2008年(1646)

我的朋友

分类:

2008-10-28 17:45:49

create table tmp_object1 as select * from dba_objects; create index idx_object1_name on tmp_object1(object_name); create table tmp_object2 as select * from dba_objects; alter session set events '10046 trace name context forever, level 12'; declare cursor cur_obj1 is select object_name from tmp_object1; type v_array is table of tmp_object1.object_name%type; v_obj1 v_array; begin open cur_obj1; loop fetch cur_obj1 bulk collect into v_obj1 limit 10000; forall i in 1..v_obj1.count delete from tmp_object1 where object_name = v_obj1(i); commit; exit when cur_obj1%notfound; end loop; close cur_obj1; end; / alter session set events '10046 trace name context off'; OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS call count cpu elapsed disk query current rows ------- ------ -------- ---------- ---------- ---------- ---------- ------- Parse 16 0.00 0.00 0 2 0 0 Execute 26 9.23 9.03 254 52778 121592 51712 Fetch 39 0.07 0.07 1 1363 0 51735 ------- ------ -------- ---------- ---------- ---------- ---------- ------- total 81 9.31 9.11 255 54143 121592 103447 Misses in library cache during parse: 5 Misses in library cache during execute: 4 Elapsed times include waiting on following events: Event waited on Times Max. Wait Total Waited ---------------------------------------- Waited ---------- ---------- db file sequential read 254 0.00 0.00 alter session set events '10046 trace name context forever, level 12'; declare v_cnt number; begin select count(*) into v_cnt from tmp_object2; v_cnt := floor(v_cnt/10000) + 1; for i in 1..v_cnt loop delete from tmp_object2 where rownum <= 10000; commit; end loop; end; / alter session set events '10046 trace name context off'; OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS call count cpu elapsed disk query current rows ------- ------ -------- ---------- ---------- ---------- ---------- ------- Parse 14 0.00 0.00 0 2 0 0 Execute 24 1.15 1.70 0 2785 57665 51712 Fetch 31 0.04 0.04 712 865 0 22 ------- ------ -------- ---------- ---------- ---------- ---------- ------- total 69 1.20 1.75 712 3652 57665 51734 Misses in library cache during parse: 3 Misses in library cache during execute: 1 Elapsed times include waiting on following events: Event waited on Times Max. Wait Total Waited ---------------------------------------- Waited ---------- ---------- db file sequential read 17 0.00 0.00 db file scattered read 67 0.00 0.01 log file switch completion 3 0.02 0.04 log buffer space 1 0.11 0.11

--------------------next---------------------

阅读(208) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~