vote up 2 vote down star
1

Say I have an Oracle PL/SQL block that inserts a record into a table and need to recover from a unique constraint error, like this:

begin
    insert into some_table ('some', 'values');
exception
    when ...
        update some_table set value = 'values' where key = 'some';
end;

Is it possible to replace the ellipsis for something in order to catch an unique constraint error?

flag

71% accept rate
To use exceptions this way is a bit slow because raising exceptions takes quite a lot of time. Try merge. – tuinstoel Jan 13 at 20:33
Agreed. But keep in mind that this example was just one of many possible use cases. The question really is "what is the id for unique constraint error?". That's why I voted William's answer up but accepted Ricardo's. – Thiago Arrais Jan 14 at 11:34
Exceptions in PL/SQL code are not as expensive as in managed or high level languages (C#, Java). In a DB application the real "slowness" is caused by db access, a PL/SQL exception cost is insignificant in this context – Ricardo Villamil Jan 16 at 16:25

3 Answers

vote up 8 vote down check
EXCEPTION
      WHEN DUP_VAL_ON_INDEX
      THEN
         UPDATE
link|flag
vote up 3 vote down

I suspect the condition you are looking for is DUP_VAL_ON_INDEX

EXCEPTION
    WHEN DUP_VAL_ON_INDEX THEN
        DBMS_OUTPUT.PUT_LINE('OH DEAR. I THINK IT IS TIME TO PANIC!')
link|flag
vote up 8 vote down

I'm sure you have your reasons, but just in case... you should also consider using a "merge" query instead:

begin
    merge into some_table st
    using (select 'some' name, 'values' value from dual) v
    on (st.name=v.name)
    when matched then update set st.value=v.value
    when not matched then insert (name, value) values (v.name, v.value);
end;

(modified the above to be in the begin/end block; obviously you can run it independantly of the procedure too).

link|flag
This helps with this specific use case, but it was an example only. The question is really about the id for an unique constraint error, so I'm upvoting this answer because it is indeed helpful, but Ricardo's will be the accepted one. – Thiago Arrais Jan 14 at 11:36
Ricardo's answer was the correct named exception, but I think William's suggestion will help more people in the long run. – Stew S Jan 16 at 12:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.