`

增加约束,但表中存已经违约的数据的做法

SQL 
阅读更多

 

SQL> create table test(id int);

表已创建。

SQL> insert into test values(1);

已创建 1 行。

SQL> insert into test values(1);

已创建 1 行。

SQL> commit;

提交完成。

SQL> create index ind_test on test(id);

索引已创建。

SQL> alter table test add constraint unq_test unique(id) using index enable novalidate;

表已更改。

SQL> insert into test values(1);
insert into test values(1)
*
第 1 行出现错误:
ORA-00001: 违反唯一约束条件 (SYS.UNQ_TEST)

 

 

 

SQL> conn battleman/battleman
已连接。
SQL> drop table test;

表已删除。

SQL> create table test(a number);

表已创建。

SQL> insert into test values(1);

已创建 1 行。

SQL> insert into test values(1);

已创建 1 行。

SQL> commit;

提交完成。

SQL> select * from test;

         A
----------
         1
         1

SQL> create index ind_test on test(a);

索引已创建。

SQL> alter table test add constraint unique_ind unique(a) novalidate;

表已更改。

SQL> insert into test values(1);
insert into test values(1)
*
第 1 行出现错误:
ORA-00001: 违反唯一约束条件 (BATTLEMAN.UNIQUE_IND)

 

 

-enable novalidate参数的含义是不检查表中已有的数据是否违反约束,但对新插入的数据会检查

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics