oracle 批量重建索引

create or replace procedure p_rebuild_all_index

   (tablespace_name in varchar2)

as

   sqlt varchar(1000);

begin


    for idx in (select index_name, tablespace_name, status from user_indexes where tablespace_name=tablespace_name and status='VALID' and temporary = 'N' and index_type='NORMAL') loop

    begin

           sqlt := 'alter index ' || idx.index_name || ' rebuild ';

           dbms_output.put_line('索引名称:'+ idx.index_name);

           dbms_output.put_line('重建语句:'+sqlt);

           EXECUTE IMMEDIATE sqlt;

           --错误后循环继续执行。

           EXCEPTION

           WHEN OTHERS THEN

                dbms_output.put_line(SQLERRM);

     end;

     end loop;

end;

oracle 存储过程批量重建索引。
测试方法
declare
    --表空间名称
  tablespace_name varchar2(100);
begin
  tablespace_name:='dddd';
  p_rebuild_all_index(tablespace_name);
end;

引自:http://www.cnblogs.com/yg_zhang/archive/2008/01/30/1058475.html

猜你喜欢

转载自zhijie-geng.iteye.com/blog/1700719