ORA-48243: Additional Fields must be declared nulls allowed ORACLE 报错 故障修复 远程处理

文档解释

ORA-48243: Additional Fields must be declared nulls allowed

Cause: A field can not be added to a relation that is defined NOT NULL

Action: Do not specify NOT NULL

Oracle 数据库错误代码 ORA-48243: 需要声明附加字段可以为空

官方解释

常见案例

一般处理方法及步骤

(1)使用 ALTER TABLE 语句为新字段添加 null 允许。

ALTER TABLE 表名 ADD 字段名 类型 NULL;

(2)进入目标表中,查看创建的字段是否允许为 null。

SELECT column_name,nullable

FROM user_tab_columns

WHERE table_name =’TABLE_NAME’;


数据运维技术 » ORA-48243: Additional Fields must be declared nulls allowed ORACLE 报错 故障修复 远程处理