PL/SQL package - PLS-00707 error

exile

Member
Has anyone seen this? You try to compile package body script in PL/SQL developer and you get a PLS-00707 error.

If you uncheck the debugger option "Add debug information when compiling" it compiles ok

Oracle metalink doc 436359.1 refers to this
 
This is probably an Oracle Server issue. You can reproduce it in SQL*Plus like this:

SQL> alter session set plsql_debug=true;
SQL> @yourpackagebody.sql
 
Back
Top