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


When I execute one package body DDL statement warning SQL developer,

  Warning: PLW-06015: parameter PLSQL_DEBUG dislikes; PLSQL_OPTIMIZE_LEVEL = 1  

How to use the SQL Developer PLSQL_DEBUG?

PLSQL_DEBUG can be configured incorrectly in an SQL * plus session using the same connection details,

  & gt; Type parameter PLSQL Type value ------------------------------------ -------- --- ------------------------------ plsql_ccflags string plsql_code_type plsql_debug interpreted string Boolean wrong plsql_native_library_dir string plsql_native_library_subdir_count integer 0 plsql_optimize_level round 2 plsql_v2_compatibility bullion capable wrong plsql_warnings string: all  

Oracle SQL developer V 2.1.1.64

Oracle 11g SE: 11.1.0.6.0

I I'm not looking for the GUI option, to gain this, trigger a login.

I am not looking to suppress the performance of this warning only. The alert should not be ready at all.

If you only wish to disable a warning that you use PLSQL_WARNINGS. Can be found in the Oracle documentation for 11g is

is used to disable the warning for your session:

ALTER SESSION able set PLSQL_WARNINGS = ': all' Disable: 06015 ';

However this will only be disabled for your current session If you want to disable it when you login, you will need to add it to your development SQL file.

Alternatively I believe that you can close all PL / SQL compiler warnings in SQL. Developer (although I would not recommend it) Vriyta-> Database> PL / SQL Compiler option

It may be possible to remove plsql_debug parameters, but I know how to do that it is uncertain. Maybe someone else can help here.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -