Oracle索引状态查询&索引重建
Posted 游兮不归
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle索引状态查询&索引重建相关的知识,希望对你有一定的参考价值。
--检查损坏索引
SELECT status, COUNT(*)
FROM dba_indexes
GROUP BY status
UNION
SELECT status, COUNT(*)
FROM dba_ind_partitions
GROUP BY status
UNION
SELECT status, COUNT(*)
FROM dba_ind_subpartitions
GROUP BY status
--重建索引
alter index pk_kc03 rebuild nologging;
or
alter index pk_kc03 rebuild
以上是关于Oracle索引状态查询&索引重建的主要内容,如果未能解决你的问题,请参考以下文章