文档首页/ 云数据库 GaussDB/ 开发指南(分布式_V2.0-3.x)/ Schema/ DBE_PERF Schema/ Object/ GLOBAL_STAT_XACT_USER_TABLES
更新时间:2025-03-12 GMT+08:00
GLOBAL_STAT_XACT_USER_TABLES
显示各节点Schema中用户表的事务状态信息(在CN节点使用,不同节点下相同表名的事务状态信息不进行汇总)。
| 名称 | 类型 | 描述 |
|---|---|---|
| node_name | name | 节点名称。 |
| relid | oid | 表的OID。 |
| schemaname | name | 该表所在的Schema名。 |
| 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更新行数(即没有更新索引列的行数)。 |
父主题: Object