ORA-20000: index "xxxx" or partition of such index is in unusable state

huzhichengforce發表於2014-06-14
今天接到業務員反映錯誤:
ORA-20000: index "ADAPTER"."PK_ADAPTER_ANALISLYZERSCHEDULE"  or partition of such index is in unusable state
檢視索引專案
select * from  dba_indexes 
但是裡面的status 卻是 VALID
不解。。。。
先處理問題吧,
思路索引錯誤,那就刪除索引重建。
錯誤報出的索引是主鍵,所以刪除主鍵
alter table table_name drop primary key;
然後重建索引。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26764973/viewspace-1183106/,如需轉載,請註明出處,否則將追究法律責任。

相關文章