ORA-20000: index "xxxx" or partition of such index is in unusable state
今天接到業務員反映錯誤:
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;
然後重建索引。
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORA-20000:index is in unusableIndex
- ORA-01502 index is in unusable stateIndex
- oracle index unusableOracleIndex
- partition table and partition indexIndex
- skip_unusable_index parameterIndex
- oracle invisible index與unusable index的區別OracleIndex
- ORA-01502 index state unusable錯誤成因和解決方法Index
- unusable index對DML/QUERY的影響Index
- 【INDEX】索引失效或者不可用 UNUSABLEIndex索引
- Some indexes or index partitions of table have been marked unusableIndex
- 那上邊的到底是 global index還是partition indexIndex
- partition_global index補疑(一)Index
- 10g可以通過命令使index unusable!Index
- alter index unusable無法起作用的情況Index
- oracle分割槽partition及分割槽索引partition index(一)Oracle索引Index
- alter index unusable 無法起作用的情況 ztIndex
- oracle分割槽及分割槽索引partition_partition index_維護(一)Oracle索引Index
- oracle分割槽及分割槽索引partition_partition index_維護(二)Oracle索引Index
- oracle分割槽及分割槽索引partition_partition index_維護(三)Oracle索引Index
- oracle分割槽及分割槽索引partition_partition index_維護(四)Oracle索引Index
- KEEP INDEX | DROP INDEXIndex
- 分割槽索引(Partition Index)與SQL執行計劃(中)索引IndexSQL
- 分割槽索引(Partition Index)與SQL執行計劃(下)索引IndexSQL
- 分割槽索引(Partition Index)與SQL執行計劃(上)索引IndexSQL
- ORA-31600: invalid input value INDEX PARTITION for parameterIndex
- rowid,index,INDEX FULL SCAN,INDEX FAST FULL SCAN|IndexAST
- oracle分割槽及分割槽索引partition_partition index_維護(五)_快捷方法Oracle索引Index
- INDEX UNIQUE SCAN,INDEX FULL SCAN和INDEX FAST FULL SCANIndexAST
- Clustered Index Scan and Clustered Index SeekIndex
- oracle hint之full,index,index_asc,index_desc,index_combile示例OracleIndex
- 非分割槽錶轉換為分割槽表和partition indexIndex
- IndexIndex
- Index的掃描方式:index full scan/index fast full scanIndexAST
- rebuild index 和 recreate index (重新建立index) 的區別RebuildIndex
- pk 、unique index 和 index 區別Index
- global index & local index的區別Index
- alter index rebuild與index_statsIndexRebuild
- B-index、bitmap-index、text-index使用場景詳解Index