Examine the following command:
SQL>ALTER SESSION
SET plsql_warnings *
‘enable:severe’,
‘enable:performance’,
‘ERROR:05003’;
What is the implication of the above command?
A.
It issues a warning whenever ERROR: 05003 occur during compilation.
B.
It causes the compilation to fail whenever the warning ERROR.05003 occurs.
C.
It issues warnings whenever the code causes an unexpected action or wrong results
performance problems.
D.
It causes the compilation to fail whenever the code gives wrong results or contains statements
that are never executed.
Explanation:
There is a bug, the “*” should be replaced by “=”
b
C is correct
why?
Of course B
B, https://community.oracle.com/thread/2613080
B
B and C are correct.
b
B