exam questions

Exam 1z0-062 All Questions

View all questions & answers for the 1z0-062 exam

Exam 1z0-062 topic 1 question 103 discussion

Actual exam question from Oracle's 1z0-062
Question #: 103
Topic #: 1
[All 1z0-062 Questions]

Which three operations can be performed as multipartition operations in Oracle? (Choose three.)

  • A. Merge partitions of a list partitioned table
  • B. Drop partitions of a list partitioned table
  • C. Coalesce partitions of a hash-partitioned global index.
  • D. Move partitions of a range-partitioned table
  • E. Rename partitions of a range partitioned table
  • F. Merge partitions of a reference partitioned index
Show Suggested Answer Hide Answer
Suggested Answer: ABF 🗳️
Multipartition maintenance enables adding, dropping, truncate, merge, split operations on multiple partitions.
A: Merge Multiple Partitions:
The new "ALTER TABLE … MERGE PARTITIONS " help merge multiple partitions or subpartitions with a single statement. When merging multiple partitions, local and global index operations and semantics for inheritance of unspecified physical attributes are the same for merging two partitions.
B: Drop Multiple Partitions:
The new "ALTER TABLE … DROP PARTITIONS " help drop multiple partitions or subpartitions with a single statement.
Example:
view plaincopy to clipboardprint?
SQL> ALTER TABLE Tab_tst1 DROP PARTITIONS
Tab_tst1_PART5, Tab_tst1_PART6, Tab_tst1_PART7;

Table altered -
SQL>
Restrictions :
- You cant drop all partitions of the table.
- If the table has a single partition, you will get the error: ORA-14083: cannot drop the only partition of a partitioned.

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Currently there are no comments in this discussion, be the first to comment!
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...