批量重建不可用索引

eric0435發表於2012-05-24
-- Created on 2012-5-24 by ADMINISTRATOR
declare
  cursor jl is select * from user_indexes a where a.status='UNUSABLE';
begin
   for r in jl loop
     execute immediate 'alter index '||r.index_name ||' rebuild';
   end loop;
end;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26015009/viewspace-730800/,如需轉載,請註明出處,否則將追究法律責任。

相關文章