ORA-39272: Cannot alter organization of nested table column: string ORACLE 报错 故障修复 远程处理

文档解释

ORA-39272: Cannot alter organization of nested table column: string

Cause: DBMS_METADATA_DIFF was comparing two nested table columns. One was a heap table, the other an index-organized table. There is no SQL ALTER statement to change the organization of a nested table.

Action: The difference cannot be eliminated with an SQL ALTER statement.

ORA-39272: Cannot alter organization of nested table column: string是一个错误提示,它表明你正试图对一个嵌套表中的字符串(varchar2或者raw)列进行修改组织,但是而Oracle数据库却不支持这样的操作。

官方解释

常见案例

ALTER TABLE MyTable MODIFY mycolumn ORGANIZATION INDEX;

一般处理方法及步骤

ALTER TABLE MyTable MODIFY mycolumn LONG RAW;

版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《ORA-39272: Cannot alter organization of nested table column: string ORACLE 报错 故障修复 远程处理》
文章链接:https://zhuji.vsping.com/294547.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。