What is the implication of the above command?

Examine the following command:
SQL>ALTER SESSION
SET plsql_warnings *
‘enable:severe’,
‘enable:performance’,
‘ERROR:05003’;

What is the implication of the above command?

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:



Leave a Reply 10

Your email address will not be published. Required fields are marked *


Michael

Michael

There is a bug, the “*” should be replaced by “=”

samkelo siyabonga ngubo

samkelo siyabonga ngubo

C is correct

Saket

Saket

Of course B

Fabio

Fabio

B and C are correct.