ORA-14121: MODIFY DEFAULT ATTRIBUTES may not be combined with other operations ORACLE 报错 故障修复 远程处理
文档解释
ORA-14121: MODIFY DEFAULT ATTRIBUTES may not be combined with other operations
Cause: ALTER TABLE or ALTER INDEX statement attempted to combine MODIFY DEFAULT ATTRIBUTES with some other operation (e.g. ADD PARTITION or PCTFREE) which is illegal
Action: Ensure that MODIFY DEFAULT ATTRIBUTES is the sole operation specified in ALTER TABLE or ALTER INDEX statement; operations other than those dealing with partitions, default attributes of partitioned tables/indices or specifying that a table be renamed (ALTER TABLE RENAME) may be combined at will
官方解释
Oracle 数据库错误代码14121,表示MODIFY DEFAULT ATTRIBUTES 命令不能与其他操作符(可能是其他存储操作符)一起使用。
常见案例
假设有一个表,表格式如下:
Name | Type | Grade
———+————+——-
John | INTEGER | A
Mary | NUMBER(10) | B
当尝试执行以下语句时,将产生ORA-14121错误:
ALTER TABLE foo MODIFY DEFAULT ATTRIBUTES FOR Grade B;
正常处理方法及步骤
1.检查要操作的表格式,并检查是否有与 MODIFY DEFAULT ATTRIBUTES 一起使用的其他操作符;
2.将MODIFY DEFAULT ATTRIBUTES与其他操作符分开,并分别运行;
3.重新检查表式以确保更改是正确的;
4.如果需要,在特定列上更改表式中的默认属性;
5.运行更改命令以更新表式;
6.在更新表式后,重新检查所有属性以确保更改是正确的;
7.应用有关此表的任何其他修改。