gpt4 book ai didi

sql - 无法验证,使用 novalidate 选项

转载 作者:行者123 更新时间:2023-12-02 08:51:50 26 4
gpt4 key购买 nike

您好,我在表格中插入了一些日期。由于某些原因,我不得不禁用我的约束。约束与索引相关联。我用过这行代码:

ALTER TABLE my_table DISABLE CONSTRAINT "my_constraint" drop index

而 my_constraint 处于禁用状态。不,我想启用此约束,但在调用此行之后:

ALTER TABLE my_table ENABLE NOVALIDATE CONSTRAINT "my_constraint";\

我收到一个错误:

ORA-02299: cannot validate (USER.my_constraint) - - duplicate keys found

最佳答案

您不能使用具有唯一索引的非唯一值。但是您可以使用由非唯一索引强制执行的唯一约束来拥有非唯一值。即使您最初创建了一个非唯一索引,drop indexenable 语法也会尝试重新创建一个唯一索引,除非您在 using index 中提供了更多详细信息 部分。

例如:

SQL> create table my_table(my_column number,
2 constraint my_constraint unique (my_column));

Table created.

SQL> alter table my_table disable constraint my_constraint drop index;

Table altered.

SQL> insert into my_table select 1 from dual union all select 1 from dual;

2 rows created.

SQL> alter table my_table enable novalidate constraint my_constraint;
alter table my_table enable novalidate constraint my_constraint
*
ERROR at line 1:
ORA-02299: cannot validate (USER.MY_CONSTRAINT) - duplicate keys found


SQL> alter table my_table enable novalidate constraint my_constraint
2 using index (create index my_index on my_table(my_column));

Table altered.

SQL> --The constraint is enforced, even though other rows violate it.
SQL> insert into my_table values(1);
insert into my_table values(1)
*
ERROR at line 1:
ORA-00001: unique constraint (USER.MY_CONSTRAINT) violated

关于sql - 无法验证,使用 novalidate 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7981221/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com