Practice exercise
Identify the nature of the program which is best suited for the interpreted mode of compilation.
The program unit contains multiple SQL statements.
The program unit has been just developed and is in debug stage.
The program unit uses collections and bulk bind statements.
The program unit is in production phase.
Choose the correct statements about the real native compilation mode in Oracle 11g;
The compilation method uses C compiler to convert the program into the equivalent C code.
The compilation method mounts the shared libraries through the
PLSQL_NATIVE_LIBRARY_DIR
andPLSQL_NATIVE_LIBRARY_SUBDIR_COUNT
parameters.The compilation does not use C compiler but converts the program unit directly to the M code.
The real native compilation is supported for RAC environments and participates in the backup recovery processes.
Determine the behavior of the
PLSQL_OPTIMIZE_LEVEL
optimizer when it has been set to3
.The optimizer would inline the programs which are necessary.
The optimizer would...