Oracle 1z0-054 Exam Practice Questions (P. 5)
- Full Access (192 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #21
You are working on an online transaction processing (OLTP) system. The CUST table in the SH schema was populated by direct load and after that it has gone through a lot of updates and deletions. The statistics for the CUST and SALES tables were updated recently.View the Exhibit and examine the query plan.The query is performing a lot of I/O for a query that fetches only 168 rows. To investigate further, you queried the ALL_TABLES view to find out PCTUSED, PCTFREE, and the number of rows in the CUST table, as given below:
SQL> SELECT table_name ,blocks, pct_used, pct_free, num_rows
2 FROM all_tables
3* WHERE table_name = 'CUST';
TABLE_NAME BLOCKS PCT_USED PCT_FREE NUM_ROWS
---------- ---------- ---------- ---------- ----------
CUST 13768 80 111060 -
What would you recommend to reduce the I/O?

SQL> SELECT table_name ,blocks, pct_used, pct_free, num_rows
2 FROM all_tables
3* WHERE table_name = 'CUST';
TABLE_NAME BLOCKS PCT_USED PCT_FREE NUM_ROWS
---------- ---------- ---------- ---------- ----------
CUST 13768 80 111060 -
What would you recommend to reduce the I/O?

- Areorganizing the table to use fewer blocks
- Brebuilding the index on the CUST_FIRST_NAME column
- Cincreasing the value for the PCTFREE attribute for the CUST table
- Dincreasing the value for the PGA_AGGREGATE_TARGET initialization parameter
Correct Answer:
A
A
send
light_mode
delete
Question #22
Your system has been upgraded from Oracle Database 10g to Oracle Database 11g. You imported SQL Tuning Sets (STS) from the previous version that contains important SQL statements. You are not sure about the elapsed time that the SQL statements will have in the new system due to the version change of the optimizer. Which tool provides a comparative report with respect to the elapsed time in both versions of the optimizer?
- ASQL Access Advisor
- BSQL Tuning Advisor (STA)
- CSQL Performance Analyzer (SPA)
- DAutomatic Workload Repository (AWR) compare period report
Correct Answer:
C
C
send
light_mode
delete
Question #23
Which three statements are true about performance analysis by SQL Performance Analyzer? (Choose three.)
- AIt detects changes in SQL execution plans.
- BIt shows only the overall impact on workload.
- CIt produces results that can be used to create the SQL plan baseline.
- DIt generates recommendations to run SQL Tuning Advisor to tune regressed SQL statements.
- EThe importance of SQL statements to be analyzed is based on the size of the objects accessed.
Correct Answer:
ACD
ACD
send
light_mode
delete
Question #24
The database application developers are planning to make some major schema changes such as creating new indexes and materialized views. They want to check the net impact of these changes on the workload performance. This activity has to be performed in the production database, so they want only the query part of the data manipulation language (DML) statements to be executed so that the side effects to the database or user data can be prevented. What should they use to achieve this?
- ADatabase Replay
- BSQL Tuning Advisor
- CSQL Access Advisor
- DSQL Performance Analyzer
Correct Answer:
D
D
send
light_mode
delete
Question #25
You upgraded database from the Oracle Database 10g to Oracle Database 11g. To test the performance SQL on the upgraded database. You want to build the before-change performance data by using SQL Performance Analyzer .Which method would allow the task to execute quickly?
- Athe EXPLAIN PLAN method
- Bthe TEST EXECUTE method
- Cthe COMPARE PERFORMANCE method
- Dthe OPTIMIZER_USE_SQL_PLAN_BASELINE parameter set to TRUE
Correct Answer:
A
A
send
light_mode
delete
All Pages