脚印

一脚一印 一点一滴 【欢迎光临·转载请注明出处】
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

【转】Oracle批量重建索引

Posted on 2009-07-31 10:55  August  阅读(530)  评论(0编辑  收藏  举报
create or replace procedure p_rebuild_all_index
   (tablespace_name 
in varchar2)
as
   sqlt 
varchar(200);
begin

    
for idx in (select index_name, tablespace_name, status from user_indexes where tablespace_name=tablespace_name and status='VALID' and temporary = 'N') 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;