
# PG_STATIO_SYS_TABLES
PG_STATIO_SYS_TABLES视图显示命名空间中所有系统表的I/O状态信息。具体字段信息如[表1]所示。
 表1PG_STATIO_SYS_TABLES字段 
| 名称              | 类型     | 描述                         |
|:---|:---|:---|
| 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表索引命中缓存数（如果存在）。    |
   
