ORA-01502: 索引 ‘GXHRCS.PK_A253‘ 或这类索引的分区处于不可用状态
http://blog.sina.com.cn/s/blog_7ab8d2720101ozw6.html
ORA-01502:此问题的原因是索引失效。
解决办法:
(1).执行:select index_name ,status from user_indexes where Status = ‘UNUSABLE‘。可以查询出失效的索引
(2).执行: select ‘alter index ‘ || index_name || ‘ rebuild;‘ from user_indexes where Status = ‘UNUSABLE‘ 可以构建重建索引的sql语句。
(3).将sql结果语句copy出来执行即可。
索引 'GXHRCS.PK_A253' 或这类索引的分区处于不可用状态
时间: 2024-10-22 13:18:40