ORA-28668: cannot reference mapping table of an index-organized table

文档解释

ORA-28668: cannot reference mapping table of an index-organized table

Cause: An attempt to directly access the mapping table of an index-organized table

Action: Issue the statement against the parent index-organized table containing the specified mapping table.

ORA-28668:不能引用索引组织表的映射表。

官方解释

当采用CREATE EXTERNAL TABLE语法创建一个外部表时,Oracle将会引发ORA-28668错误,这指出不能引用一个索引组织表的映射表(IOTM)。

常见案例

ORA-28668错误通常会在试图在外部表中引用索引组织表的映射表时发生。

一般处理方法及步骤

要解决本身ORA-28668错误,请在外部表示创建完成后重新创建此字段,如下所示:

ALTER TABLE external_table_name

ADD field_name data_type;

你可能感兴趣的