Download Oracle.1z0-064.CertDumps.2017-11-22.84q.vcex

Download Exam

File Info

Exam Oracle Database 12c: Performance Management and Tuning
Number 1z0-064
File Name Oracle.1z0-064.CertDumps.2017-11-22.84q.vcex
Size 3 MB
Posted Nov 22, 2017
Download Oracle.1z0-064.CertDumps.2017-11-22.84q.vcex

How to open VCEX & EXAM Files?

Files with VCEX & EXAM extensions can be opened by ProfExam Simulator.

Purchase

Coupon: MASTEREXAM
With discount: 20%






Demo Questions

Question 1

Examine the Load Profile section of an AWR report:
  
Which two inferences can you derive from the details in this section? (Choose two.)


  1. The values for Redo size and Block changes imply that only updates were performed by transactions.
  2. The values for Parses (SQL) and Hard parses (SQL) imply that cursor sharing occurred quite often.
  3. The values for DB Time and DB CPU imply that the database had a high proportion of idle time during the specified snapshot interval.
  4. The values for SQL Work Area and User calls imply that only sort-based operations were performed.
  5. The values for Logical reads and Physical reads imply that the number of disk reads per second was less than the total number of DB block reads and consistent gets per second.
Correct answer: BD



Question 2

Which two statements are true about the interpretation of Buffer Cache Hit Ratio in the Instance Efficiency Percentages section of an AWR report? (Choose two.)


  1. A high value indicates that the buffer cache is adequately sized for the current workload.
  2. Poor hit ratios indicate that a large number of indexed lookups or small table scans are being performed.
  3. A low hit ratio does not necessarily imply that increasing the size of the buffer cache will improve performance.
  4. A high hit ratio may indicate that repeated scanning of the same large table or index is being performed.
  5. A low hit ratio indicates that a KEEP buffer pool should be configured based on the size of the largest object accessed in the buffer cache.
Correct answer: CE



Question 3

Which four objectives are achieved by using Resource Manager to manage multiple concurrent user sessions that are competing for resources? (Choose four.)


  1. distributing available CPU by allocating percentages of CPU time to different users and applications
  2. limiting the degree of parallelism of any operation performed by members of a group of users
  3. limiting queries based on resource consumption of runaway sessions or calls that consume more than a specified amount of CPU, physical I/O, logical I/O, or elapsed time
  4. limiting the number of concurrent sessions for a user
  5. limiting the number of user sessions allowed to be concurrently active within a group of users
  6. limiting the number of parallel executions that can be executed by a user
Correct answer: ACEF



Question 4

Which two statements are true about server-generated alerts? (Choose two.)


  1. They are always logged in the alert log.
  2. They are written to a trace file if the TRACE_ENABLED initialization parameter is set to TRUE.
  3. They are generated only when the STATISTICS_LEVEL initialization parameter is set to ALL.
  4. They can be generated for user-defined metric thresholds.
  5. They appear in the DBA_ALERT_HISTORY view whenever corrective action is taken for an alert.
Correct answer: CD



Question 5

Examine the parameters:
  
Your database supports a mixed workload and users have dedicated server connections. Users complain about the increased response time of a few queries that are performing large sort operations. On investigation, you notice an increase in the number of multipass work area executions and high number of direct path write wait events.
Which two actions could improve the performance? (Choose two.)


  1. increasing the value of the SORT_AREA_SIZE parameter
  2. increasing the value of the PGA_AGGREGATE_TARGET parameter
  3. enabling Automatic Memory Management for the instance
  4. increasing the size of the default temporary tablespace
  5. using parallel hint in queries performing large sort operations
  6. enabling Automatic Shared Memory Management for the instance
Correct answer: AF



Question 6

Your database supports an online transaction processing (OLTP) workload. The database uses ASM storage.
One of the ASM disks goes offline because of hardware failure. When the disk is replaced and then addedback to the diskgroup, database performance is affected by rebalance operations.
Which two actions would you recommend to lower the impact of rebalance operations on the performance of the database? (Choose two.)


  1. Increase the number of ASMB processes.
  2. Decrease the value of the ASM_POWER_LIMIT parameter.
  3. Set the DISK_REPAIR_TIME disk attribute to a lower value.
  4. Specify the POWER clause with a lower value in an ALTER DISKGROUP statement.
  5. Set the DISK_REPAIR_TIME disk attribute to a higher value.
Correct answer: BD



Question 7

You are administering a database that supports a mixed workload. The CURSOR_SHARING parameter is set to the default value. While analyzing the latest Automatic Workload Repository (AWR) report, you find a large number of cursor: pin S wait on X, cursor: pin X wait on S, and library cache mutex waits in the Top 10 foreground events section. 
Examine the Instance Efficiency Percentages section in the AWR report:
  
Which three statements are true in this scenario? (Choose three.)


  1. Sessions are waiting for mutexes in share mode on cursors but other sessions are holding the mutexes in exclusive mode.
  2. The CPU is spending more time in finding cursors in the library cache.
  3. Cursors are not getting shared, resulting in a large number of hard parses.
  4. Sessions are waiting for mutexes in exclusive mode on cursors but other sessions are holding the mutexes in share mode.
  5. The buffers required by queries are not found in the buffer cache, thereby increasing expensive disk I/O.
Correct answer: BDE



Question 8

Which two statements are true about ADDM or Real-Time ADDM? (Choose two.)


  1. ADDM can be run manually by selecting any range of AWR snapshots available within the AWR retention period, provided they do not cover a time period when the instances were restarted.
  2. ADDM runs in Partial mode to analyze any hung database issues.
  3. Real-Time ADDM can proactively detect and diagnose transient performance issues that last for a few seconds.
  4. Real-Time ADDM is automatically invoked by ADDM at the end of every hour.
Correct answer: BC



Question 9

Which three actions should you perform to reduce shared pool fragmentation and avoid the "ORA-04031: unable to allocate .... bytes of shared memory" error for the shared pool? (Choose three.)


  1. Configure the Server Result Cache.
  2. Configure shared server mode.
  3. Identify the packages or procedures that are causing the "ORA-04031: unable to allocate ....bytes of shared memory" error and use the DBMS_SHARED_POOL.KEEP to keep them in the shared pool.
  4. Use DBMS_SHARED_POOL.KEEP to keep the SYS.STANDARD, SYS.DBMS_STANDARD, and SYS.DIUTILpackages and frequently executed compiled triggers.
  5. Use more anonymous procedures.
  6. Standardize the type, size, and naming conventions for bind variables and spacing conventions for SQLstatements and PL/SQL blocks.
Correct answer: ABD



Question 10

Examine the parameters set for your database instance:
  
You are administering a database that supports an OLTP workload. Users complain about the degraded performance of some queries. While diagnosing, you notice a large number of hard parses occurring for several syntactically almost identical SQL statements that differ only in literal values in the WHERE clause.
Which two actions would you recommend to improve performance? (Choose two.)


  1. Create the KEEP cache and cache the tables used in the queries.
  2. Set the CURSOR_SHARING parameter to FORCE.
  3. Use bind variables instead of literals.
  4. Create SQL plan baselines for the almost identical SQL statements and load them into the cursor cache.
  5. Set the OPTIMIZER_CAPTURE_SQL_PLAN_BASELINES parameter to TRUE.
Correct answer: BE









CONNECT US

Facebook

Twitter

PROFEXAM WITH A 20% DISCOUNT

You can buy ProfExam with a 20% discount!



HOW TO OPEN VCEX FILES

Use ProfExam Simulator to open VCEX files