Oracle 索引的失效检查

select index_name, partition_name, status
from user_ind_partitions
where status = 'UNUSABLE'
union all
select index_name, '' as partition_name, status
from user_indexes
where status = 'UNUSABLE';

  

原文地址:https://www.cnblogs.com/fubinhnust/p/9928872.html