Weekend Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: xmas50

Oracle 1z0-084 - Oracle Database 19c: Performance Management and Tuning

Page: 2 / 2
Total 55 questions

You manage a 19c database with default optimizer settings.

This statement is used extensively as subquery in the application queries:

SELECT city_id FROM sh2.sales WHERE city_id=:Bl

You notice the performance of these queries is often poor and, therefore, execute:

SELECT city_id,COUNT(*) FROM sh2.sales GROUP BY city_id;

Examine the results:

There is no index on the CITY_ID column.

Which two options improve the performance?

A.

Generate frequency histograms on the CITY__ID column.

B.

Create an index on the CITY IP column.

C.

Use a SQL Profile to enforce the appropriate plan.

D.

Force the subquery to use dynamic sampling.

E.

Activate the adaptive plans.

Users complain about slowness and session interruptions. Additional checks reveal the following error in the application log:

Which file has additional information about this error?

A.

Alert log

B.

ASH report

C.

Session trace file SQL trace file automatically generated by the error

D.

SQL trace file automatically generated by the error

During which application lifecycle phase do you take baselines?

A.

Testing

B.

Migration or upgrade

C.

Design and development

D.

Deployment

E.

Production

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?

A.

enq: SQ - contention

B.

enq: TM - contention

C.

enq: HW - contention

D.

enq: TX - allocate ITL entry

Examine this statement and output:

Which three statements are true?

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.

An Oracle 19c database uses default values for all optimizer initialization parameters.

After a table undergoes partition maintenance, a large number of wait events occur for:

cursor: pin S wait on X

Which command reduces the number of these wait events?

A.

ALTER SYSTEM SET CURSOR_SHARING = FORCE;

B.

ALTER SYSTEM SET CURSOR_SPACE_FOR_TIME - TRUE;

C.

ALTER SYSTEM SET CURSOR_INVALIDATION = DEFERRED;

D.

ALTER SYSTEM SET SESSION CACHED CURSORS = 500;