Oracle 1z0-064 Exam Practice Questions (P. 5)
- Full Access (84 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
Examine the query and its output:

Which two inferences can be definitely derived from this output? (Choose two.)

Which two inferences can be definitely derived from this output? (Choose two.)
- AThe db file scattered read event has occurred 104 times in this session for file# 12.
- BThe session has completed performing a full table scan.
- CThe SQL statements in this session are performing excessive disk reads.
- DThe multiblock factor is 8 for this I/O but it could vary for the other I/O events.
Correct Answer:
AC
AC
send
light_mode
delete
Question #22
You are administering a database that supports an OLTP workload. An application regularly creates global temporary tables and a large number of transactions are performed on them. You notice that performance is degraded because of excessive generation of undo due to a large number of transactions on the global temporary tables.
What is the recommended action to improve performance? (Choose the best answer.)
What is the recommended action to improve performance? (Choose the best answer.)
- AIncrease the size of the undo tablespace and enable undo retention guarantee.
- BIncrease the size of the database buffer cache.
- CEnable temporary undo.
- DIncrease the size of the temporary tablespace or make it autoextensible.
- EEnable Automatic Segment Space Management (ASSM) for the undo tablespace.
Correct Answer:
A
Reference: https://docs.oracle.com/cd/B13789_01/server.101/b10739/undo.htm
A
Reference: https://docs.oracle.com/cd/B13789_01/server.101/b10739/undo.htm
send
light_mode
delete
Question #23
Your database supports an OLTP system.
Examine the parameter values configured in your database:
sga_max_size = 480M
sga_target = 480M
pga_aggregate_target = 160M
The CUSTOMERS table contains 8,000 rows. The CUST_ID column is the primary key and the COUNTRY_ID column contains only three possible values: 1111,
2222, and 3333.
You execute the commands:
SQL> EXECUTE DBMS_STATS.GATHER_TABLE_STATS(SH,CUSTOMERS);
PL/SQL procedure successfully completed.
SQL> CREATE INDEX COUNTRY_IDX ON CUSTOMERS (COUNTRY_ID);
Index created.
You then perform a series of INSERT, UPDATE, and DELETE operations on the table.
View the Exhibit to examine the query and its execution plan.

Which two options can improve the performance of the query without significantly slowing down the DML operations? (Choose two.)
Examine the parameter values configured in your database:
sga_max_size = 480M
sga_target = 480M
pga_aggregate_target = 160M
The CUSTOMERS table contains 8,000 rows. The CUST_ID column is the primary key and the COUNTRY_ID column contains only three possible values: 1111,
2222, and 3333.
You execute the commands:
SQL> EXECUTE DBMS_STATS.GATHER_TABLE_STATS(SH,CUSTOMERS);
PL/SQL procedure successfully completed.
SQL> CREATE INDEX COUNTRY_IDX ON CUSTOMERS (COUNTRY_ID);
Index created.
You then perform a series of INSERT, UPDATE, and DELETE operations on the table.
View the Exhibit to examine the query and its execution plan.

Which two options can improve the performance of the query without significantly slowing down the DML operations? (Choose two.)
- Acreating a bitmap index on the COUNTRY_ID column
- Bregathering statistics on the CUSTOMERS table
- Cgathering statistics on the COUNTRY_IDX index
- Dcreating a histogram on the COUNTRY_ID column
- Eincreasing the size of the PGA
- Fcreating an SQL profile
- Gcreating a KEEP cache
Correct Answer:
AD
AD
send
light_mode
delete
Question #24
Identify two effects of the DB_FILE_MULTIBLOCK_READ_COUNT parameter on the optimizer. (Choose two.)
- ADecreasing the value of DB_FILE_MULTIBLOCK_READ_COUNT from the default increases the cost of index probes for DSS workloads.
- BA full table scan can become cheaper than index scans if the database instance has a high enough DB_FILE MULTIBLOCK_READ_COUNT for both OLTP and DSS workloads.
- CIncreasing the value of DB_FILE_MULTIBLOCK_READ_COUNT within OS limits lowers the costing of an index probe that is done in conjunction with a nested loop for OLTP workloads.
- DIn DSS workloads where full table scans may run in parallel and bypass the buffer cache, decreasing the value of DB_FILE_MULTIBLOCK_READ_COUNT from the default increases the cost of full table scans.
- EIncreasing the value of DB_FILE_MULTIBLOCK_READ_COUNT within OS limits lowers the cost of full table scans and can result in the optimizer choosing a full
Correct Answer:
CD
CD
send
light_mode
delete
Question #25
Examine the query and its output:

Which two statements are true? (Choose two.)

Which two statements are true? (Choose two.)
- ASession 2832 had to wait 2029 seconds for a message to arrive because of a network bottleneck.
- BSession 4208 is either idle or experiencing poor response time due to a network or resource bottleneck on the client process.
- CSession 3346 is in wait state because it wants to lock a row in a block in which other sessions have already locked rows, and there is no free ITL slot available in this block.
- DSession 3346 is in wait state because either it is waiting to update a row that is locked by another session or another session is trying to insert the same key value in a UNIQUE index.
- ESession 4208 is definitely idle and should be killed to free network resources.
Correct Answer:
AD
AD
send
light_mode
delete
All Pages