Which of the following are valid table-partitioning methods
-
Key based
-
Freelist
-
Hash
-
Index
C
Correct answer
Explanation
Hash partitioning is a standard table partitioning method where data is distributed across partitions using a hash function on partition key values. Key-based is not a standard partitioning method name. Freelist relates to space management within segments, not partitioning. Index is a separate access structure, not a partitioning method. Common partitioning methods include range, list, hash, and composite.