ORA-08104: this index object %s is being online built or rebuilt的處理
線上建索引或者線上重建索引的過程中,如果相應的會話或程式被kill掉,那這個時候索引的狀態其實是不正確的(但是在查詢DBA_OBJECTS的時候還是現實索引是VALID的),雖然SMON程式最終會對這個索引進行清理,但是很多情況下或導致SMON不能及時進行清理操作,這時候就需要我們手工來進行清理。
透過使用DBMS_REPAIR.ONLINE_INDEX_CLEAN來進行清理工作。DECLARE isClean BOOLEAN; BEGIN isClean := DBMS_REPAIR.ONLINE_INDEX_CLEAN(OBJECT_ID=>95038); IF (isClean) THEN DBMS_OUTPUT.PUT_LINE ('Cleanup status OK'); END IF; END; /
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/13885898/viewspace-1651343/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORA-08104: this index object 93996 is being online built or rebuiltIndexObject996UI
- Online rebuild index遭遇ORA-08104RebuildIndex
- How to Determine When an Index Should be Rebuilt?IndexUI
- online rebulid index異常終止遇到ora-08104Index
- oracle ORA-08104處理Oracle
- ONLINE方式線上重建索引異常中斷後遇到ORA-08104錯誤的處理思路索引
- ORA-08104 索引online rebuild索引Rebuild
- create index online 與rebuild index onlineIndexRebuild
- create index online 與rebuild index onlineIndexRebuild
- ORA-14086: a partitioned index may not be rebuilt as a wholeIndexUI
- rebuild index online和create index online及沒有online的區別RebuildIndex
- create index .. onlineIndex
- create index onlineIndex
- Index Online RebuildIndexRebuild
- Create Index ...ONLINEIndex
- create index/create index online區別Index
- How To Know If An Object (Table / Procedure / View /…) Is Currently BeingObjectView
- index rebuild online的問題IndexRebuild
- CREATE INDEX ......ONLINE分析Index
- rebuild online被終止後的錯誤 ora-08104Rebuild
- online 建立索引失敗處理索引
- Index online operation的過程 ztIndex
- Creating an Index OnlineIndex
- 索引rebuild online失敗後處理索引Rebuild
- create index online 和create index 不同及注意點Index
- alter index rebuild online引發的血案IndexRebuild
- alter index ... rebuild online的機制(zt)IndexRebuild
- 【羅玄】從鎖的角度看rebuild index online和rebuild indexRebuildIndex
- Undo和Current Online Redo損壞的處理方法
- Current online Redo 和 Undo 損壞的處理方法
- alter index rebuild 與 rebuild onlineIndexRebuild
- Salesforce 大資料量處理篇(二)IndexSalesforce大資料Index
- 建立index 使用Online導致的問題Index
- rebuild index online的鎖機制淺析RebuildIndex
- alter index rebuild和rebuild online的區別IndexRebuild
- 【Oracle】Current online Redo 和 Undo 損壞的處理方法Oracle
- 關於rebuild index online 及drop index後重建問題RebuildIndex
- MySQL online create index實現原理MySqlIndex