PG_STAT_ALL_TABLES
PG_STAT_ALL_TABLES视图可用来查询当前数据库中每个表的信息(包括TOAST表),显示访问特定表的统计信息。
名称 |
类型 |
描述 |
---|---|---|
relid |
oid |
表的OID。 |
schemaname |
name |
该表的模式名。 |
relname |
name |
表名。 |
seq_scan |
bigint |
该表发起的顺序扫描数。 |
seq_tup_read |
bigint |
顺序扫描抓取的活跃行数。 |
idx_scan |
bigint |
该表发起的索引扫描数。 |
idx_tup_fetch |
bigint |
索引扫描抓取的活跃行数。 |
n_tup_ins |
bigint |
插入行数。 |
n_tup_upd |
bigint |
更新行数。 |
n_tup_del |
bigint |
删除行数。 |
n_tup_hot_upd |
bigint |
HOT更新行数(比如没有更新所需的单独索引)。 |
n_live_tup |
bigint |
估计活跃行数。 |
n_dead_tup |
bigint |
估计不活跃行数。 |
last_vacuum |
timestamp with time zone |
最后一次清理该表的时间。 |
last_autovacuum |
timestamp with time zone |
这个表上次被autovacuum守护进程清理的时间。 |
last_analyze |
timestamp with time zone |
上次分析该表的时间。 |
last_autoanalyze |
timestamp with time zone |
这个表上次被autovacuum守护进程分析的时间。 |
vacuum_count |
bigint |
这个表被清理的次数。 |
autovacuum_count |
bigint |
这个表被autovacuum清理的次数。 |
analyze_count |
bigint |
这个表被手动分析的次数。 |
autoanalyze_count |
bigint |
这个表被autovacuum守护进程分析的次数。 |
last_data_changed |
timestamp with time zone |
记录这个表上一次数据发生变化的时间(引起数据变化的操作包括INSERT/UPDATE/DELETE、EXCHANGE/TRUNCATE/DROP partition,系统表不记录该字段),该列数据仅在本地CN记录。 |