exam questions

Exam 1z0-060 All Questions

View all questions & answers for the 1z0-060 exam

Exam 1z0-060 topic 1 question 43 discussion

Actual exam question from Oracle's 1z0-060
Question #: 43
Topic #: 1
[All 1z0-060 Questions]

You upgrade your Oracle database in a multiprocessor environment. As a recommended best practice, you execute the following script:

SQL > @utlrp.sql -
Which two actions does the script perform? (Choose two.)

  • A. Parallel compilation of only the stored PL/SQL code
  • B. Sequential recompilation of only the stored PL/SQL code
  • C. Parallel recompilation of any stored PL/SQL code
  • D. Sequential recompilation of any stored PL/SQL code
  • E. Parallel recompilation of Java code
  • F. Sequential recompilation of Java code
Show Suggested Answer Hide Answer
Suggested Answer: CE 🗳️
utlrp.sql and utlprp.sql
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.
Both scripts must be run as the SYS user, or another user with SYSDBA, to work correctly.

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Currently there are no comments in this discussion, be the first to comment!
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...