ORA-29868: cannot issue DDL on a domain index marked as LOADING ORACLE 报错 故障修复 远程处理
文档解释
ORA-29868: cannot issue DDL on a domain index marked as LOADING
Cause: Tried to issue a DROP/ALTER/TRUNCATE on a domain index in a LOADING state.
Action: Wait till the index operation completes OR issue a DROP INDEX FORCE to drop the index.
ORA-29868: cannot issue DDL on a domain index marked as LOADING意味着用户能够执行像创建,删除,更改等DDL(数据定义语言)或操作期间数据库中域索引标记为LOADING状态。
官方解释
常见案例
一般处理方法及步骤
(1)确保尚未将数据添加到索引表,因为这将导致失败。
(2)首先检查当前数据库中是否有其他正在活动的事务,并取消/暂停这些活动的任何事务。
(3)确保当前没有创建或更新域索引的活动事务。
(4)重新启动服务器上的过程,最终把索引变成REBUILDING状态。
(5)检查索引的当前状态,如果它是LOADING状态,则执行ALTER INDEX…REBUILD DDL语句。
(6)将新数据添加到索引中。