Oracle
 sql >> Database >  >> RDS >> Oracle

Inserisci se non esiste Oracle

Arrivo in ritardo alla festa, ma...

Con Oracle 11.2.0.1 c'è un suggerimento semantico che può farlo:IGNORE_ROW_ON_DUPKEY_INDEX

Esempio:

insert /*+ IGNORE_ROW_ON_DUPKEY_INDEX(customer_orders,pk_customer_orders) */
  into customer_orders
       (order_id, customer, product)
values (    1234,     9876,  'K598')
     ;

AGGIORNAMENTO :Sebbene questo suggerimento funzioni (se lo scrivi correttamente), ci sono approcci migliori che non richiedono Oracle 11R2:

Primo approccio:traduzione diretta del suggerimento semantico sopra:

begin
  insert into customer_orders
         (order_id, customer, product)
  values (    1234,     9876,  'K698')
  ;
  commit;
exception
  when DUP_VAL_ON_INDEX
  then ROLLBACK;
end;

Secondo approccio:molto molto più veloce di entrambi i suggerimenti sopra quando c'è molta contesa:

begin
    select count (*)
    into   l_is_matching_row
    from   customer_orders
    where  order_id = 1234
    ;

    if (l_is_matching_row = 0)
    then
      insert into customer_orders
             (order_id, customer, product)
      values (    1234,     9876,  'K698')
      ;
      commit;
    end if;
exception
  when DUP_VAL_ON_INDEX
  then ROLLBACK;
end;