sql >> データベース >  >> RDS >> Oracle

novalidateオプションで検証できません

    一意のインデックスを持つ一意でない値を持つことはできません。ただし、非一意性インデックスによって強制される一意性制約を持つ非一意性値を持つことができます。最初に一意でないインデックスを作成した場合でも、drop index およびenable 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
    


    1. PostgreSQLで類似した文字列をすばやく見つける

    2. MySQLサーバーのメモリが不足しているか、起動しません

    3. Java JDBCはsetFetchSizeを無視しますか?

    4. SQL結合の概要