|
|
1. The SALES table is partitioned by month according to the date the
sales order was taken. One of the salespeople enters a sales order dated July 31, then
realizes he took the order on August 1. When he issues the UPDATE statement to modify the
data, what happens?
|
 |
A. The update fails because the partition-key column can never be
updated. |
|
B. The update
fails because a partition-key column cannot be updated such that the row must move
partitions. |
|
C. The update fails because a NULL value was specified for the primary
key. |
|
D. The update succeeds. |
|
|
 |
A. A user deleted one row from the table partition. |
|
B. The DBA issued an alter table add partition statement. |
|
C. The DBA issued an alter index rebuild partition statement. |
|
D. The DBA issued
an alter table truncate partition statement. |
|
3. Which of the following operations
should the DBA execute to load data into ten partitions of a table simultaneously?
|
 |
A.
Execute SQL*Loader ten times in parallel. |
|
B. Execute SQL*Loader once with the parameter DEGREE=10. |
|
C. Execute SQL*Loader once with the parameter PARALLEL=TRUE. |
|
D. Execute SQL*Loader five times with the parameter INSTANCES=2. |
|
4.
The DBA creates a table called EXPENSES whose partition key is the EXPENSE_DATE column.
The partitions are called EXP_JUNE, EXP_JULY, EXP_AUGUST, and EXP_SEPTEMBER. She drops
the first partition, covering the month of June. Later, a user adds a row to the table
with the EXPENSE_DATE column equal to '15-JUN-1999'. To which partition is the row added?
|
 |
A. JULY. |
|
B. AUGUST. |
|
C. SEPTEMBER. |
|
D. None, the partition-key value is out of range. |
|
|
 |
A. Partition independence |
|
B. Greater data availability |
|
C. Inability to
access one partition when another is unavailable |
|
D. Scaleable performance with data growth |
|
6. When the DBA declares a
global index with partitions identical to the table, equipartitioning is enforced
automatically by Oracle.
|
 |
A. TRUE |
|
B. FALSE |
|
7. Which of the following are
not partitioned indexes available in Oracle? (Choose two)
|
 |
A. Global prefixed indexes |
|
B.
Global nonprefixed indexes |
|
C. Local prefixed indexes |
|
D.
Global equipartitioned indexes |
|
8. The EXPENSES
table uses a partition key called EXPENSE_DATE of datatype DATE, representing the date
the sale was entered. The DBA splits the EXP_JULY partition of the SALES table into two
partitions, EXP_JULY1-15 and EXP_JULY16-31. All rows in the EXP_JULY partition have a
value greater than July 17 for the partition key. Which of the following statements is
TRUE regarding the local prefixed indexes produced by the table partition split?
|
 |
A. EXP_JULY1-15 will be unusable, but EXP_JULY16-31 will be valid. |
|
B. Both EXP_JULY1-15 and EXP_JULY16-31 will be valid. |
|
C. Both EXP_JULY1-15 and EXP_JULY16-31 will be unusable. |
|
D. EXP_JULY1-15
will be valid, but EXP_JULY16-31 will be unusable. |
|
9. The DBA wants to
eliminate partition X1 from table EMPLOYEES. If partition X1 contains 65 percent of
the rows for the table and there are global indexes on the table, what is the fastest way
for the DBA to eliminate partition X1 and make the global indexes available for use again?
|
 |
A. Merge the partition, rebuild the index. |
|
B. Drop the
partition, rebuild the index. |
|
C. Delete all rows from the partition, drop the partition, rebuild the
index. |
|
D. Split the partition, Drop the partition, rebuild the index. |
|
10. When a table partition
is truncated, only the associated partition in the global index becomes INDEX
UNUSABLE.
|
 |
A. TRUE |
|
B.
FALSE |
|
|
 |
A. alter table EXPENSES modify partition X1 from DATA_01 to DATA_05; |
|
B. alter table EXPENSES rename partition X1 to DATA_05; |
|
C. alter table
EXPENSES move partition X1 tablespace DATA_05; |
|
D. alter table EXPENSES drop partition X1 into DATA_05; |
|
12. When the DBA executes the ALTER
TABLE EXCHANGE PARTITION statement, data in the partition is physically moved into another
table.
|
 |
A. TRUE |
|
B. FALSE |
|
13. If the DBA wants to
determine the partition key for a table, she can use which of the following dictionary
views?
|
 |
A. DBA_PART_TABLES |
|
B. DBA_TAB_HISTOGRAMS |
|
C. DBA_TAB_COLUMNS |
|
D. DBA_TAB_COL_STATISTICS |
|