好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

ORA-29869: cannot issue ALTER without REBUILD on a domain index marked FAILED ORACLE 报错

文档解释

ORA-29869: cannot issue ALTER without REBUILD on a domain index marked FAILED

Cause: Tried to issue a DROP/ALTER on a domain index in a FAILED state.

Action: Truncate the table to mark the index as valid OR do ALTER INDEX REBUILD to rebuild the index.

这个错误指出Oracle不能对一个以失败标志标记的域索引发出ALTER语句,除非已经先发出REBUILD语句来重建此索引。

官方解释

常见案例

一般处理方法及步骤

1.首先要检查索引的状态,确定索引确实是以失败标志标记的。

2.然后,发出一条“ALTER INDEX … REBUILD”语句,以重建索引。

3.最后,发出要执行的ALTER语句。

查看更多关于ORA-29869: cannot issue ALTER without REBUILD on a domain index marked FAILED ORACLE 报错的详细内容...

  阅读:20次