首页 > 代码库 > 修复 status 为 unusable 的 index
修复 status 为 unusable 的 index
以DBA权限登陆,执行以下脚本即可。
declare
-- 指向所有 UNUSABLE 状态的 index 的游标
cursor c is
select index_name, owner
from dba_indexes
where status=‘UNUSABLE‘;
owner dba_indexes.owner%type;
index_name dba_indexes.index_name%type;
begin
open c;
loop
fetch c into index_name, owner;
exit when c%notfound;
execute immediate ‘alter index ‘ || owner || ‘.‘ || index_name || ‘ rebuild‘;
end loop;
close c;
end;
修复 status 为 unusable 的 index
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。