Files
doc-exports/docs/dws/dev/dws_04_0776.html
luhuayi 177cd61a57 DWS DEVG 910.211 version
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-authored-by: luhuayi <luhuayi@huawei.com>
Co-committed-by: luhuayi <luhuayi@huawei.com>
2025-05-05 07:44:03 +00:00

8.3 KiB

PG_STATIO_ALL_TABLES

PG_STATIO_ALL_TABLES displays I/O statistics about all tables (including TOAST tables) in the current database.

Table 1 PG_STATIO_ALL_TABLES columns

Column

Type

Description

relid

OID

Table OID

schemaname

Name

Schema name of the table

relname

Name

Name of a table

heap_blks_read

Bigint

Number of disks read from this table

heap_blks_hit

Bigint

Number of buffer hits in this table

idx_blks_read

Bigint

Number of disk blocks read from the index in this table

idx_blks_hit

Bigint

Number of buffer hits in all indexes on this table

toast_blks_read

Bigint

Number of disk blocks read from the TOAST table (if any) in this table

toast_blks_hit

Bigint

Number of buffer hits in the TOAST table (if any) in this table

tidx_blks_read

Bigint

Number of disk blocks read from the TOAST table index (if any) in this table

tidx_blks_hit

Bigint

Number of buffer hits in the TOAST table index (if any) in this table