Which two partitioning methods are keyless?
-
Round Robin
-
Same
-
Hash
-
Modulus
A,B
Correct answer
Explanation
Round Robin distributes rows sequentially without using any key, and Same keeps data on the same partition (no key needed for repartitioning). Hash and Modulus both require a key column to calculate partition destinations.