Practice exercise
Identify the nature of the program that is best suited for the interpreted mode of compilation.
The program unit contains multiple SQL statements.
The program unit has just been developed and is in the debug stage.
The program unit uses collections and bulk bind statements.
The program unit is in the production phase.
Choose the correct statements about the real native compilation mode in Oracle 11g.
The compilation method uses the C compiler to convert the program into an 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 the 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 that are necessary.
The...