-
Book Overview & Buying
-
Table Of Contents
PostgreSQL High Performance Cookbook
By :
In this recipe, we will be discussing the PostgreSQL functionality that measures object size.
PostgreSQL follows a specific file storage layout, which stores data into multiple folders. The common directories that we see in the PostgreSQL data directory are:
base: This folder contains the database subfolders and the subfolder will contain actual relational files
global: This folder contains all the cluster level catalog information
pg_clog: This folder contains the committed transactions information, which will be helpful during crash recovery
pg_xlog: This folder contains the ongoing transactions information, which will be helpful during crash recovery
pg_tblsp: This folder contains the symbolic link to tablespaces
pg_log: This folder contains the database log files
PostgreSQL also has a few more additional directories, which also keep additional information about the running instance.
Refer to this URL for more information about additional directories...