ORA-26027: unique index string.string partition string initially in unusable state

文档解释

ORA-26027: unique index string.string partition string initially in unusable state

Cause: A partition of a unique index is in IU state (a unique index
* cannot have index maintenance skipped via SKIP_UNUSABLE_INDEXES).

Action: Either rebuild the index or index partition, or use
* SKIP_INDEX_MAINTENANCE if the client is SQL*Loader.

ORA-26027:唯一索引string.string的分区string处于不可用状态

官方解释

常见案例

一般处理方法及步骤

1.如果一个非唯一索引处于不可用的状态,请使用false参数运行alter index rebuild函数。

2.可以通过删除不可用的分区,然后再次使用alter index rebuild函数,来从不可用状态更改唯一索引。

3.使用validation flag可以在改变不可用状态时,检查表中是否存在重复entry。

你可能感兴趣的