Which two actions does the script perform?

You upgrade your Oracle database in a multiprocessor environment. As a recommended
you execute the following script: SQL > @utlrp.sql Which two actions does the script
perform?

You upgrade your Oracle database in a multiprocessor environment. As a recommended
you execute the following script: SQL > @utlrp.sql Which two actions does the script
perform?

A.
Sequential recompilation of Java code

B.
Parallel compilation of only the stored PL/SQL code

C.
Sequential recompilation of only the stored PL/SQL code

D.
Parallel recompilation of any stored PL/SQL code

E.
Sequential recompilation of any stored PL/SQL code

F.
Parallel recompilation of Java code



Leave a Reply 2

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


rodge

rodge

Yep, D and F:

https://oracle-base.com/articles/misc/recompiling-invalid-schema-objects#utlrp_and_utlprp

The utlrp.sql and utlprp.sql scripts are provided by Oracle to recompile all invalid objects in the database. They are typically run after major database changes such as upgrades or patches. They are located in the $ORACLE_HOME/rdbms/admin directory and provide a wrapper on the UTL_RECOMP package. The utlrp.sql script simply calls the utlprp.sql script with a command line parameter of “0”. The utlprp.sql accepts a single integer parameter that indicates the level of parallelism as follows.

0 – The level of parallelism is derived based on the CPU_COUNT parameter.
1 – The recompilation is run serially, one object at a time.
N – The recompilation is run in parallel with “N” number of threads.