In which scenario would you prefer range-based partitioning over hash-based partitioning?

  • When data distribution is skewed
  • When the query workload involves range queries
  • When there are frequent insertions and deletions
  • When there is a need for data redundancy
Range-based partitioning is preferred over hash-based partitioning when the query workload involves range queries. This allows the database to quickly identify and access the specific partition containing the required range of data, optimizing query performance.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *