Which two statements are true about the PL/SQL initialization parameters? (Choose two.)
A.
To use native code compilation, PLSQL_OPTIMIZE_I.EVEL should be set to a value less than
or equal to l.
B.
The default value of 2 for PLSQL_OPTIMI2E_LEVEL allows the compiler to rearrange code for
better performance.
C.
Setting PLSQL_CODE_TYPE to native provides the greatest performance gains only for
computation-intensive procedural operations.
D.
Changing the value of the PLSQL_CODE_TYPE parameter affects all the PL/SQL library units
that have already been compiled
Explanation:
b,c
http://docs.oracle.com/cd/E11882_01/server.112/e40402/initparams196.htm#REFRN10253
http://docs.oracle.com/cd/E11882_01/appdev.112/e17126/tuning.htm#LNPLS01201
B,C
B,C
http://psoug.org/reference/plsql_warnings.html
A is the opposite of the true……….
PLW-06014 PLSQL_OPTIMIZE_LEVEL <= 1 turns off native code generation
Native code generation was not done because the optimization was set to 1 or less.
D IS WRONG , IT AFFETES COMPILATIONS SINCE ALTERATION IS DONE, NOT BEFORE