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

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

Demo: 16 questions
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.

Question 2

Which three statements are true about using the in Memory (IM) column store?

Options:

A.

It does not improve performance for queries using cached results of function evaluations on columns from the same table.

B.

It does not improve performance for queries that use join groups on columns from different tables.

C.

It can improve OLTP workload performance by avoiding the use of indexes.

D.

It does not improve performance for queries using user-defined virtual column results.

E.

It does not require all database data to fit in memory to improve query performance.

F.

It improves performance for queries joining several tables using bloom filter joins.

Question 3

Which statement is true about DB time in V$$YS_TIME_MODEL?

Options:

A.

DB time is organized as a simple list of statistics and any time period is attributable to only one statistic.

B.

DB time can be many times greater than the elapsed time since the database instance started.

C.

DB tine excludes the time spent waiting for a CPU in the operating system run queue.

D.

DB time includes the time spent executing the RMAN backup and restore command.

Question 4

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 5

Which two statements are true about session wait information contained in v$session or v$session_wait?

Options:

A.

Rows for sessions displaying WAITED UNKNOWN TIME in the STATE column indicate that the session is still waiting.

B.

Rows for sessions that are currently waiting have a wait time of 0.

C.

Rows for sessions that are not waiting might contain the actual wait time for the last event for which they waited.

D.

Rows for sessions that are currently waiting have their wait time incremented every microsecond.

E.

Rows for sessions that are not waiting always contain the total wait time since the session started.

Question 6

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 7

Buffer cache access is too frequent when querying the SALES table. Examine this command which executes successfully:

ALTER TABLE SALES SHRINK SPACE;

For which access method does query performance on sales improve?

Options:

A.

db file scattered read

B.

db file sequential read

C.

index full scan

D.

index range scan

Question 8

You must produce a consolidated formatted trace file by combining all trace files generated by all clients for a single service.

Which combination of utilities does this?

Options:

A.

Trace Analyzer and Tracsess

B.

Trcsess and TKPROF

C.

Autotrace and TKPROF

D.

TKPROF and Trace Analyzer

Question 9

The CURS0R_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?

Options:

A.

Create the KEEP cache and cache tables accessed by the SQL statements.

B.

Create the RECYCLE cache and cache tables accessed by the SQL statements.

C.

Increase the size of the library cache.

D.

Set OPTIMIZER_CAPTURE_SQL_PLAN_BASELINESto TRUE.

E.

Set the CURSOR_SHARING parameter to FORCE.

Question 10

Which two Oracle Database features use database services?

Options:

A.

Oracle Automatic Reoptimization

B.

Database Resource Manager

C.

Oracle SQL Performance Management

D.

Oracle SQL Tuning Advisor

E.

Oracle Scheduler

Question 11

SGA_TARGET and PGA_AGGREGATE_TARGET are configured to nonzero values.

MEMORY_target is then set to a nonzero value but memory_MAX_TARG£T is not set.

Which two statements are true?

A)

B)

C)

D)

E)

F)

G)

Options:

A.

Option

B.

Option

C.

Option

D.

Option

E.

Option

F.

Option

G.

Option

Question 12

You need to transport performance data from a Standard Edition to an Enterprise Edition database. What is the recommended method to do this?

Options:

A.

Export the data by using expdp from Statspack and import it by using $ORACLE_HOME/rdbms/admin/awrload into the AWRrepository.

B.

Export the data by using expdp from the ftatspack repository and import it by using impdp into the AWR repository.

C.

Export the data by using the expdp utility and parameter file spuexp.par from the Statspack repository and import it by using impdp into Export the data by using expdp from

the Statspack repository and import it by using impdp into the AWR repository.

D.

Export the data by using the exp utility and parameter file spuexp.par from the Statspack repository and import it by using imp into a dedicated Statspack schema on the destination.

Question 13

Which three statements are true about tuning dimensions and details of v$sys_time_model and DB time?

Options:

A.

Statspack cannot account for high CPU time when CPU TIME is a Top 10 event in DB time. When CPU time is high, SQL tuning may improve performance.

B.

Systems in which CPU time is dominant need more tuning that those in which WAIT TIME is dominant.

C.

The proportion of WAIT TIME to CPU TIME always increases with increased system load.

D.

When WAIT TIME is high, instance tuning may improve performance.

E.

Parse Time Elapsed accounts for successful soft and hard parse operations only.

F.

DB Time accounts for all time used by background processes and user sessions.

Question 14

Which two options are part of a Soft Parse operation?

Options:

A.

Syntax Check

B.

SQL Row Source Generation

C.

SQL Optimization

D.

Shared Pool Memory Allocation

E.

Semantic Check

Question 15

A database instance is suffering poor I/O performance on two frequently accessed large tables.

No Big Table caching occurs in the database.

Examine these parameter settings:

Which are two actions either one of which will allow Big Table caching to occur?

Options:

A.

Increasing DB_BIG_TABLE_CACHE_PERCENT_TARGET to at least 50

B.

Setting DB_KEEP_CACHE_SIZE to at least 50M

C.

Increasing DB_BIG_TABLE_CACHE_PERCENT_TARGET to at least 25

D.

Increasing DB_CACHESIZE to 1 G

E.

Setting PARALLEL_DEGREE_POLICYADAPTIVE

F.

Setting PARALLEL_DEGREE_POLICYAUTO

Question 16

Which two statements are true about the use and monitoring of Buffer Cache Hit ratios and their value in tuning Database I/O performance?

Options:

A.

The performance of workloads that primarily generate full table scans and fast full index scans are always affected by the cache hit ratio.

B.

A 99% cache hit ratio can be observed for database instances which have very poor I/O performance.

C.

The buffer cache advisory view v$db_cache_advice provides advice on cache hit ratios appropriate for the instance workload.

D.

Both the RECYCLE and KEEP buffer caches should always have a very high cache hit ratio.

E.

A 60% cache hit ratio can be observed for database instances which have very good I/O performance.

Demo: 16 questions
Total 55 questions