PG_STATIO_ALL_TABLES
PG_STATIO_ALL_TABLES视图显示当前数据库中所有表的I/O的统计信息(包括TOAST表)。
名称 |
类型 |
描述 |
---|---|---|
relid |
oid |
表OID。 |
schemaname |
name |
表的模式名。 |
relname |
name |
表名。 |
heap_blks_read |
bigint |
从此表中读取的磁盘块数。 |
heap_blks_hit |
bigint |
此表缓冲区命中数。 |
idx_blks_read |
bigint |
从表中所有索引读取的磁盘块数。 |
idx_blks_hit |
bigint |
表中所有索引命中缓冲区数。 |
toast_blks_read |
bigint |
此表的TOAST表读取的磁盘块数(如果存在)。 |
toast_blks_hit |
bigint |
此表的TOAST表命中缓冲区数(如果存在)。 |
tidx_blks_read |
bigint |
此表的TOAST表索引读取的磁盘块数(如果存在)。 |
tidx_blks_hit |
bigint |
此表的TOAST表索引命中缓冲区数(如果存在)。 |