ORA-39261: Cannot modify column in cluster.
Cause: DBMS_METADATA_DIFF was comparing two clusters with different column lists. There is no SQL ALTER statement to modify a column in a cluster.
Action: The difference cannot be eliminated with an SQL ALTER statement.
ORA-39261指示无法在Oracle Cluster上修改字段。
1.使用台式数据库类型,如Oracle常规表,而不是Oracle Cluster表。
2.将字段的数据类型更改为可在Oracle Cluster表中更改的类型(例如,primary key和unique key和Object的Types)
3.如果仅需要更改表中某个字段的长度等,可以使用SQL脚本(如Drop字段、创建新字段)来更改字段
4.确保要更改的列不是Oracle Cluster表中的Primary Key,Unique Key或者Object的Types中的任何一个