当前位置:  开发笔记 > 数据库 > 正文

Oracle Modify语句 - 错误

如何解决《OracleModify语句-错误》经验,为你挑选了1个好方法。

我在表格中添加了一个新列.

ALTER TABLE neue_buch modify preis not null;

我有这个错误:

Error starting at line 40 in command:
ALTER TABLE neue_buch
modify preis not null
Error report:
SQL Error: ORA-02296: cannot enable (S1885872.) - null values found
02296. 00000 - "cannot enable (%s.%s) - null values found"
*Cause:    an alter table enable constraint failed because the table
           contains values that do not satisfy the constraint.
*Action:   Obvious

我的修改声明有什么问题.

提前谢谢了,

magidu



1> Justin Cave..:

该错误消息告诉你,有一些行NEUE_BUCH,其中PREIS列是NULL.在创建此NOT NULL约束之前,您需要将这些行修改为具有非NULL值.

推荐阅读
echo7111436
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有