InterviewSolution
| 1. |
What are partitioned tables called in PostgreSQL? |
|
Answer» Partitioned tables are LOGICAL structures that are used for dividing large tables into smaller structures that are called partitions. This approach is used for effectively increasing the query performance while dealing with large database tables. To create a partition, a key called partition key which is usually a table column or an expression, and a partitioning method needs to be defined. There are three types of inbuilt partitioning methods provided by Postgres:
The type of partition key and the type of method used for partitioning determines how positive the performance and the level of manageability of the partitioned table are. |
|