Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Oracle V8i access violation key in EXCEPTION clause 1

Status
Not open for further replies.

Palmero

Technical User
Mar 31, 2001
53
FR
Hi all,

Considering the following code :

EXCEPTION
WHEN NO_DATA_FOUND THEN
-- do_this
WHEN OTHERS THEN
-- do that

What is the keyword error for DUPLICATE KEY IN INDEX (access violation key)?

Thanks in advance for your answer.

Palmero.
 
It would be
WHEN DUP_VAL_ON_INDEX
----do something
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top