Subject when sqlcode -803
Author Sandeep Chandra
I need to do the following in stor proc

begin
.
.
.
insert statement..

when sqlcode -803
do /* nothing */

when any
do exception some_exception
end

how do I achieve this

Sandeep