I'm anoyed of one message in runtime. What can i do so the message wouldn't appear? I use on-message trigger:
DECLARE
errnum NUMBER := ERROR_CODE;
BEGIN
IF errnum = 40401 THEN
:GLOBAL.chk := 'y';
END IF;
END;
but it doesn't help in this case! Is there some other solution?
DECLARE
errnum NUMBER := ERROR_CODE;
BEGIN
IF errnum = 40401 THEN
:GLOBAL.chk := 'y';
END IF;
END;
but it doesn't help in this case! Is there some other solution?