How to prevent "parameter PLSQL_DEBUG is deprecated" compiler warning in Oracle SQL Developer

Posted by Janek Bogucki on Stack Overflow See other posts from Stack Overflow or by Janek Bogucki
Published on 2010-06-15T13:08:52Z Indexed on 2010/06/16 6:42 UTC
Read the original article Hit count: 565

Filed under:
|
|
|

When I execute a package body DDL statement SQL Developer warns,

Warning: PLW-06015: parameter PLSQL_DEBUG is deprecated; use PLSQL_OPTIMIZE_LEVEL=1

How can SQL Developer be configured to not use PLSQL_DEBUG?

PLSQL_DEBUG is set to false in an sql*plus session using the same connection details,

> show parameters plsql

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
plsql_ccflags                        string
plsql_code_type                      string      INTERPRETED
plsql_debug                          boolean     FALSE
plsql_native_library_dir             string
plsql_native_library_subdir_count    integer     0
plsql_optimize_level                 integer     2
plsql_v2_compatibility               boolean     FALSE
plsql_warnings                       string      ENABLE:ALL

Oracle SQL Developer v 2.1.1.64

Oracle 11g SE: 11.1.0.6.0

© Stack Overflow or respective owner

Related posts about Oracle

Related posts about plsql