ORA-14060: data type or length of a table partitioning column may not be changed ORACLE 报错 故障修复 远程处理
文档解释
ORA-14060: data type or length of a table partitioning column may not be changed
Cause: User issued ALTER TABLE statement attempting to modify data type and/or length of a column used to partition the table named in ALTER TABLE statement, which is illegal
Action: Avoid modifying data type and/or length of table partitioning column(s)
Oracle ORA-14060错误提示:数据表分区列的数据类型或长度不可以更改。
官方解释
常见案例
正常处理方法及步骤
1. 首先确定发出ORA-14060错误的原因。
2. 备份现有表,并使用FLASHBACK TABLE命令撤消已有表的状态。
3. 如果必须更改表的结构,则应使用ALTER TABLE… DROP PARTITION /ALTER TABLE… MODIFY PARTITION这类语句,来重新定义表分区。
4. 将表重新插入索引,以恢复正常的表结构。