This example illustrates the PLS-483 error : Compile Error « PL SQL « Oracle PL / SQL






This example illustrates the PLS-483 error

    
SQL> CREATE TABLE log_table(
  2    code     VARCHAR2(100),
  3    message     VARCHAR2(100),
  4    info     VARCHAR2(100));

Table created.

SQL>
SQL>
SQL> DECLARE
  2    myException1 EXCEPTION;
  3    myException2 EXCEPTION;
  4  BEGIN
  5    RAISE myException1;
  6  EXCEPTION
  7    WHEN myException2 THEN
  8      INSERT INTO log_table (info)VALUES ('Handler 1 executed!');
  9    WHEN myException1 THEN
 10      INSERT INTO log_table (info)VALUES ('Handler 3 executed!');
 11    WHEN myException1 OR myException2 THEN
 12      INSERT INTO log_table (info)VALUES ('Handler 4 executed!');
 13  END;
 14  /
  WHEN myException1 OR myException2 THEN
  *
ERROR at line 11:
ORA-04045: errors during recompilation/revalidation of JAVA2S.LOG_ERRORS
ORA-01031: insufficient privileges
ORA-06550: line 11, column 3:
PLS-00483: exception 'MYEXCEPTION2' may appear in at most one exception handler
in this block
ORA-06550: line 0, column 0:
PL/SQL: Compilation unit analysis terminated


SQL>
SQL> drop table log_table;

Table dropped.

   
    
    
    
  








Related examples in the same category

1.Check the error
2.Check error for procedure
3.Check error form stored procedure
4.PLS-00306: wrong number or types of arguments in call
5.PLS-00363: expression '3' cannot be used as an assignment target
6.Set the PLSQL_WARNING level to DISABLE:ALL
7.This package will not compile because the specification and body do not match.
8.Build an anonymous block that will trigger an error.
9.how DDL doesn't work with PL/SQL