PL/SQL Warning: deprecated parameter PLSQL_DEBUG

Worker

Member³
When compiling a procedure with debug information (via "ALWAYS add debug info for connections") on an 11g database that has PLSQL_WARNINGS='ENABLE:ALL', I get the following warnings:

Code:
Error: PLW-06015: parameter PLSQL_DEBUG is deprecated; use PLSQL_OPTIMIZE_LEVEL = 1
Line: 1
Text: CREATE OR REPLACE PROCEDURE test_warnings AS

Error: PLW-06013: deprecated parameter PLSQL_DEBUG forces PLSQL_OPTIMIZE_LEVEL <= 1
Line: 1
Text: CREATE OR REPLACE PROCEDURE test_warnings AS
 
Those warnings now no longer appear in the error pane (I think that's what it's called) of the program window. They also don't appear under the "Compile Invalid Objects" list.

They do still appear in the USER_ERRORS view when it is queried directly.
 
Back
Top