Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: PL/SQL exceptions handling help
This seems a scope problem at first look. You declare the exception
inside the begin-end block in the procedure, but your "exception when"
clause is outside the begin-end block.
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Thomas Day
Sent: Thursday, March 29, 2007 8:32 PM
To: oracle-l Freelists
Subject: PL/SQL exceptions handling help
I've spent all morning R'ing the FMs and looking up examples and I still can't get my PL/Sql to handle my user-defined exception. Obviously I'm missing something that is clear as a bell to all the people who post these examples. Any idea what it is?
Oracle 9i on AIX
SQL> l
1 create or replace
2 procedure refresh_snapshot (mv_id IN varchar2) is
3 ERR_NUM NUMBER:=0;
4 ERR_MSG VARCHAR2(100):=null; 5 v_owner varchar2(100):=null; 6 v_mview varchar2(100):=null;
20 LOOP 21 FETCH V_SNAPSHOTS INTO v_mview; 22 EXIT WHEN V_SNAPSHOTS%NOTFOUND;23 DBMS_SNAPSHOT.REFRESH('||v_owner||.||v_mview||','||v_action||'); 24
27 END; 28 EXCEPTION WHEN need_complete_refresh then v_action:='C'; 29 DBMS_SNAPSHOT.REFRESH('||v_owner||.||v_mview||','||v_action||');
30
sql_stmt:='DBMS_SNAPSHOT.REFRESH('||v_owner||'.'||v_mview||','||v_action
||');';
31 -- EXCEPTION
32 WHEN OTHERS THEN
33 err_num := SQLCODE; 34 err_msg := SUBSTR(SQLERRM, 1, 100);35 DBMS_OUTPUT.PUT_LINE (sql_stmt);
LINE/COL ERROR
0/0 PL/SQL: Compilation unit analysis terminated 12/2 PLS-00704: 'NEED_COMPLETE_REFRESH' must be declared as an exception 14/3 PL/SQL: Item ignored
-- http://www.freelists.org/webpage/oracle-lReceived on Fri Mar 30 2007 - 07:21:21 CDT
![]() |
![]() |