Oracle Database 19c: Performance Management and Tuning

Here you have the best Oracle 1z0-084 practice exam questions

  • You have 31 total questions to study from
  • Each page has 5 questions, making a total of 7 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on May 31, 2025
  • This site is not affiliated with or endorsed by Oracle.
Question 1 of 31

The CURSOR_SHARING and OPTIMIZER_CAPTURE_SQL_PLAN_BASELINES parameters are set to default. The top five wait events in an AWR report are due to a large number of hard parses because of several almost identical SQL statements.

Which two actions could reduce the number of hard parses? (Choose two.)

    Correct Answer: D, E

    Setting OPTIMIZER_CAPTURE_SQL_PLAN_BASELINES to TRUE will help in stabilizing execution plans for repeated queries and thus reduce the likelihood of new parse operations. Setting the CURSOR_SHARING parameter to FORCE will replace literals with bind variables, allowing SQL statements that are identical except for literals to share the same execution plan, which reduces the number of hard parses.

Question 2 of 31

Which three types of statistics are captured by Statspack with snap level 6? (Choose three.)

    Correct Answer: C, D, E

Question 3 of 31

Examine this AWR report excerpt:

Exam 1z0-084 Question 3

You must reduce the impact of database I/O, without increasing buffer cache size and without modifying the SQL statements.

Which compression option satisfies this requirement?

    Correct Answer: C

Question 4 of 31

Examine this output of a query of V$PGA_TARGET_ADVICE:

Exam 1z0-084 Question 4

Which statements is true?

    Correct Answer: B

Question 5 of 31

Examine this statement and its corresponding execution plan:

Exam 1z0-084 Question 5

Which phase introduces the CONCATENATION step?

    Correct Answer: D