ORA-28668: cannot reference mapping table of an index-organized table ORACLE 报错 故障修复 远程处理
文档解释
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;
香港美国云服务器首选后浪云,2H2G首月10元开通。
后浪云(www.IDC.Net)提供简单好用,价格厚道的香港/美国云服务器和独立服务器。IDC+ISP+ICP资质。ARIN和APNIC会员。成熟技术团队15年行业经验。
版权声明:
作者:后浪云
链接:https://www.idc.net/help/45039/
文章版权归作者所有,未经允许请勿转载。
THE END