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;