InterviewSolution
Saved Bookmarks
| 1. |
What is table partitioning in PostgreSQL? |
|
Answer» In PostgreSQL, table partitioning REFERS to splitting a large table into smaller SECTIONS. PostgreSQL supports LIST and range partitioning via table heritance. Users have to CREATE each partition as a child table of the master table. |
|