Check error for procedure : Compile Error « PL SQL « Oracle PL / SQL






Check error for procedure

    
SQL>
SQL>
SQL>
SQL> create or replace procedure A(p number) is
  2    begin
  3        B(p+1);
  4    end;
  5   /

Warning: Procedure created with compilation errors.

SQL>
SQL> show errors
Errors for PROCEDURE A:

LINE/COL ERROR
-------- -----------------------------------------------------------------
3/7      PL/SQL: Statement ignored
3/7      PLS-00905: object JAVA2S.B is invalid
SQL>
SQL> create or replace procedure B(p number) is
  2    begin
  3        A(p+1);
  4    end;
  5   /

Warning: Procedure created with compilation errors.

SQL>
SQL>
SQL> show errors
Errors for PROCEDURE B:

LINE/COL ERROR
-------- -----------------------------------------------------------------
3/7      PL/SQL: Statement ignored
3/7      PLS-00905: object JAVA2S.A is invalid
SQL>

   
    
    
    
  








Related examples in the same category

1.Check the error
2.Check error form stored procedure
3.PLS-00306: wrong number or types of arguments in call
4.PLS-00363: expression '3' cannot be used as an assignment target
5.Set the PLSQL_WARNING level to DISABLE:ALL
6.This example illustrates the PLS-483 error
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