plsql_warnings specifies whether to output warnings and the warning level.
| Property | Description |
|---|---|
| Parameter type | String |
| Default value | DISABLE::ALL |
| Value range | Standard strings |
| Effective upon OBServer restart | No |
The following syntax is used:
PLSQL_WARNINGS = 'value_clause' [, 'value_clause' ]
value_clause::=
{ ENABLE | DISABLE | ERROR }:
{ ALL
| WARN
| DEBUG
| { integer
| (integer [, integer ] ...)
}
}
In the syntax:
ENABLE: Enable the specified warnings.
DISABLE: Disable the specified warnings.
ERROR: Treat the specified warnings as errors.
ALL: Apply to all warning messages.
DEBUG: Apply to debugging.
WARN: Apply to warnings.
Examples:
PLSQL_WARNINGS = 'ENABLE:DEBUG', 'DISABLE:WARN';
PLSQL_WARNINGS = 'DISABLE:ALL';
PLSQL_WARNINGS = 'DISABLE:5000', 'ENABLE:5001','ERROR:5002';
PLSQL_WARNINGS = 'ENABLE:(5000,5001,5002)','DISABLE:(6000,6001)';