nerdexam
Oracle

1Z0-074 · Question #26

You want to partition the SALES table on the CITY and SALE_DATE columns. Which three partitioning methods can you use? (Choose three.)

The correct answer is A. range C. hash D. list. Explanation/Reference: https://docs.oracle.com/database/121/VLDBG/GUID-6CE884AF-84A4-4E6A-A3EF- DCCEBCAB2DB2.htm#VLDBG00202

New Features for Storage

Question

You want to partition the SALES table on the CITY and SALE_DATE columns. Which three partitioning methods can you use? (Choose three.)

Options

  • Arange
  • Binterval
  • Chash
  • Dlist
  • Evirtual column-based

How the community answered

(53 responses)
  • A
    77% (41)
  • B
    8% (4)
  • E
    15% (8)

Explanation

Explanation/Reference: https://docs.oracle.com/database/121/VLDBG/GUID-6CE884AF-84A4-4E6A-A3EF- DCCEBCAB2DB2.htm#VLDBG00202

Topics

#composite partitioning#range partitioning#hash partitioning#list partitioning

Community Discussion

3
Otieno M.Otieno M.Dec 1, 2025

A, C, D is right. Range, hash, and list are the three native methods that support composite (multi-column) partition keys directly, so you can partition on both CITY and SALE_DATE in a single partition clause. Interval (B) only works on a single numeric or date column and cannot be part of a composite key, and virtual column-based (E) is not a standalone partitioning method but rather a way to derive the partition key, not one of the core methods the question is testing.

30
Viktor S.Viktor S.Dec 18, 2025

Correct. Range, hash, and list all support composite partition keys natively; interval does not.

4
Fatima Z.Fatima Z.Nov 21, 2025

Thought B fit but interval hates company, so RHL wins: Range, Hash, List.

3
Full 1Z0-074 Practice