引自:https://www.cnblogs.com/lijiaman/p/9277149.html
原因: 出现这个问题,可能有人move过表,或者disable 过索引。
alter table xxxxxx move tablespace xxxxxxx
命令后,索引就会失效。alter index index_name unusable
,命令使索引失效。
解决办法:
-
重建索引才是解决这类问题的完全的方法。
alter index index_name rebuild (online);
或者
alter index index_name rebuild;
-
如果是分区索引只需要重建那个失效的分区 。
alter index index_name rebuild partition partition_name (online);
或者
alter index index_name rebuild partition partition_name ;
-
或者改变当前索引的名字。
说明:
alter session set skip_unusable_indexes=true;
就可以在session级别跳过无效索引作查询。- 分区索引应适用user_ind_partitions。
- 状态分4种:
N/A说明这个是分区索引需要查user_ind_partitions
或者user_ind_subpartitions
来确定每个分区是否可用;
VAILD说明这个索引可用;
UNUSABLE说明这个索引不可用;
USABLE 说明这个索引的分区是可用的。 - 查询当前索引的状态:
select distinct status from user_indexes;
- 查询那个索引无效:
select index_name from user_indexes where status <> 'VALID';
- 批量rebuild下:
select 'alter index '||index_name||' rebuild online;' from user_indexes where status <> 'VALID' and index_name not like'%$$';