Pre-Winter Special - Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: top65certs

Oracle 1z0-084 Dumps

Page: 1 / 4
Total 55 questions

Oracle Database 19c: Performance Management and Tuning Questions and Answers

Question 1

Which two actions can cause invalidation or loss of one or more results in the SQL Query Result Cache?

Options:

A.

One or more results were aged out of the result cache.

B.

result_cache_max_size is set dynamically to 0.

C.

A request was made by the RCBG background of a non-RAC database.

D.

A request was made by the RCBG background process in a physical standby database that is opened read only and whose primary has a result cache.

E.

Decreasing the value set for RESULT_CACHE_REMOTE_EXPIRATION.

Buy Now
Question 2

Examine this statement and output:

Which three statements are true?

Options:

A.

Both 9822 and 8779 sessions are waiting for operating system resources.

B.

Session 8779 may be waiting due to a network problem.

C.

Session 9857 waited 1354 seconds for another process, which was also waiting for a transaction to end.

D.

Session 9857 is not waiting.

E.

Session 8779 may be waiting for a user or application response.

F.

Session 9822 will always stop waiting if the session that owns the TX enqueue issues a COMMIT statement as session 9822 is the first session in the transaction queue.

Question 3

Which Optimizer component helps decide whether to use a nested loop join or a hash join in an adaptive execution plan?

Options:

A.

Statistics Feedback

B.

SQL Plan Directives

C.

Statistics Collector

D.

Automatic Reoptimization

E.

Dynamic Statistics

Question 4

What is the right time to stop tuning an Oracle database?

Options:

A.

When the allocated budget for performance tuning has been exhausted

B.

When all the concurrency waits are eliminated from the Top 10

C.

When the buffer cache and library cache hit ratio is above 95%

D.

When the I/O is less than 10% of the DB time

Question 5

Which two types of performance problems are reported by ADDM for PDBS?

Options:

A.

I/O capacity limits

B.

Excessive checkpoint writes

C.

SGA sizing issues

D.

Top SQL statements

E.

User I/O waits

Question 6

You must write a statement that returns the ten most recent sales. Examine this statement:

Users complain that the query executes too slowly. Examine the statement's current execution plan:

What must you do to reduce the execution time and why?

Options:

A.

Create an index on SALES.TIME_ID to force the return of rows in the order specified by the ORDER BY clause.

B.

Replace the FETCH FIRST clause with ROWNUM to enable the use of an index on SALES.

C.

Collect a new set of statistics on PRODUCT, CUSTOMERS, and SALES because the current stats are inaccurate.

D.

Enable Adaptive Plans so that Oracle can change the Join method as well as the Join order for this query.

E.

Create an index on SALES.CUST_ID to force an INDEX RANGE SCAN on this index followed by a NESTED LOOP join between CUSTOMERS and SALES.

Question 7

A Standard Edition production database has performance problems for two hours on the same day each week.

Which tool must you use to diagnose the problem?

Options:

A.

SQL Performance Analyzer

B.

AWR Compare Periods report

C.

Database Replay

D.

Statspack report

Question 8

A database supporting a mixed workload is hosted on a server with 64 CPUs.

A large number of free buffer waits and buffer busy waits occur affecting performance.

The buffer cache size was then increased but after a few hours, the same wait events occur more often than before the change.

Examine these parameter settings:

Which two actions can help reduce the number of these waits7

Options:

A.

increasing the value of DB_FILE_MULTIBLOCK_READ_COUNT to 128

B.

Increasing the size of MEMORYTARGET

C.

setting dbwr_io_slaves to 64

D.

increasing the value of DBWRITERPROCESSES to 64,

E.

reducing the values of DB_FILE_MULTILOCK_READ_COUNT to 64

Question 9

Which two statements are true about cursor sharing?

Options:

A.

Setting Cursor_sharing to FORCE can result in a plan that is suboptimal for the majority of

values bound to a bind variable when executing a cursor with one or more bind variables.

B.

Adaptive Cursor Sharing guarantees that a suboptimal plan will never be used on any execution of a SQL statement.

C.

Setting optimizer_capture_sql_plan_baselines to TRUE loads all adaptive plans for the same statement into the cursor cache.

D.

Setting cursor_sharing to EXACT prevents Adaptive Cursor Sharing from being used.

E.

Adaptive Cursor Sharing requires histograms on filtered columns, used in equality predicates, to allow different execution plans to be generated for statements whose bound values would normally generate different plans at hard parse time.

Question 10

Which three types of statistics are captured by statspack with snap level 6?

Options:

A.

Parent and child latches

B.

Parent and child latches

C.

Optimizer execution plans

D.

Plan usage data

E.

Enqueue statistics

F.

Segment-level statistics

Question 11

Examine this code block, which executes successfully:

DBMS_SERVER_ALERT. SET_THRESHOLD (

DBMS_SERVER_ALERT.CPU_TIME_PER_CALL, DBMS_SERVER_ALERT. OPERATOR_GE, '8000',

DBMS_SERVER_ALERT.OPERATOR_GE, '10000', 1, 2, 'inst1',

DBMS_SERVER_ALERT.OBJECT_TYPE_SERVICE, 'main.regress.rdbms.dev.us.example.com') ;

What will happen?

Options:

A.

A warning alert will be issued when CPU time exceeds 1 minute for each user call.

B.

A critical alert will be issued when CPU time exceeds 10000 microseconds for each user call.

C.

A warning alert will be issued only when CPU time exceeds 10000 microseconds for each user call.

D.

A critical alert will be issued when CPU time exceeds 2 minutes for each user call.

Question 12

Examine this AWRreport excerpt:

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?

Options:

A.

MN STORE COMPRESS FOR QUERY LOW

B.

STORE COMPRESS

C.

ROW STORE COMPRESS ADVANCED

D.

COLUMN STORE COMPRESS FOR QUERY HIGH

Question 13

Multiple sessions are inserting data concurrently into a table that has an LOB column.

At some point in time, one of the sessions cannot find available space in the LOB segment and needs to allocate a new extent.

Which wait event will be raised in the other sessions that need space in the LOB column?

Options:

A.

enq: SQ - contention

B.

enq: TM - contention

C.

enq: HW - contention

D.

enq: TX - allocate ITL entry

Question 14

You use SQL Tuning Advisor to tune a given SQL statement.

The analysis eventually results in the implementation of a SQL Profile.

You then generate the new SQL Profile plan and enforce it using a SQL PlanBaselinebut forget to disable the SQLProfile and a few days later you find out that the SQL Profile is generating a new execution plan.

Which two statements are true?

Options:

A.

The existence of two concurrent plan stability methods generates a child cursor for every execution.

B.

The SQL Profiles as well as SQL Plan Baseline are implemented using hints, so they both generate the same plan.

C.

The execution plan is the one enforced by the SQL Profile.

D.

The execution plan is the one enforced by the SQL Plan Baseline.

E.

The SQL Plan Baseline must be accepted in order to be used for the execution plan.

F.

The conflict between the two plan stability methods results in an error.

Question 15

Which two statements are true about space usage in temporary tablespaces?

Options:

A.

When a global temporary table instantiation is too large to fit in memory, space is allocated in a temporary tablespace.

B.

Temporary tablespaces setting Includes quotas to limit temporary space used by a session for that Temporary tablespace.

C.

A sort will fail if a sort to disk requires more disk space and no additional extent can be found/allocated in/for the sort segment.

D.

When a session consumes all temporary tablespace storage, then the session would hang until the temporary space used by that session is cleared.

E.

Lack of temporary tablespace space for sort operations can be prevented by using temporary tablespace groups.

Question 16

Which three statements are true about server-generated alerts?

Options:

A.

They are notifications from the Oracle Database Server of an existing or impending problem.

B.

They provide notifications but never any suggestions for correcting the identified problems.

C.

They are logged in the alert log.

D.

They can be viewed only from the Cloud Control Database home page.

E.

Their threshold settings can be modified by using DBMS_SERVER_ALERT.

F.

They may contain suggestions for correcting the identified problems.

Page: 1 / 4
Total 55 questions