6

我正在做一种插入到具有唯一列的表中的方法。我不知道我是否可以访问导致插入失败的插入值。

例如:

table1(id,name, phone);

name is unique.

insert (1,a,123);

insert (2,a,1234);

我想要的是当我进行第二次插入时,我返回 id 值 '1' 而不必重复查询。

先感谢您。

4

2 回答 2

6

从 oracle 10g r2 开始,您可以使用insert命令的log errors子句在单独的表中记录错误。这是一个例子:

SQL> create table test_table(
  2    id   number primary key,
  3    col1 varchar2(7)
  4  )
  5  ;

Table created


-- creates a table for logging errors (table name will be prefaced with err$_)
SQL> begin dbms_errlog.create_error_log('TEST_TABLE'); end;
  2  /

PL/SQL procedure successfully completed

-- violates primary key constraint
SQL> insert into test_table(id, col1)
  2  (  select 1, level
  3      from dual
  4    connect by level <= 3)
  5    log errors reject limit unlimited;

1 row inserted

SQL> commit;

SQL> select * from test_table;

        ID COL1
---------- -------
         1 1


SQL> select * from err$_test_table;

ORA_ERR_NUMBER$ ORA_ERR_MESG$                                           ORA_ERR_ROWID$  ORA_ERR_OPTYP$ ORA_ERR_TAG$ ID  COL1
--------------- ------------------------------------------------------------------------------------------------------------
              1 ORA-00001: unique constraint (HR.SYS_C008315) violated  I                                            1     2
              1 ORA-00001: unique constraint (HR.SYS_C008315) violated  I                                            1     3
于 2012-12-12T13:59:47.397 回答
0

也许你可以在你的表上写一个触发器(在插入之前),插入即将发生。在此您可以检查表中是否已存在列值(名称)。如果确实如此,您可以将此重复记录插入另一个表中以供进一步参考

另一种方法是在可以检查名称并且可以将重复名称存储在表中的过程中编写插入。

希望能帮助到你

于 2012-12-12T11:27:27.457 回答