Files
doc-exports/docs/dws/dev/dws_04_0771.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.1 KiB

PG_STAT_XACT_SYS_TABLES

PG_STAT_XACT_SYS_TABLES displays the transaction status information of the system catalog in the namespace.

Table 1 PG_STAT_XACT_SYS_TABLES columns

Column

Type

Description

relid

OID

Table OID

schemaname

Name

Schema name of the table

relname

Name

Table name

seq_scan

Bigint

Number of sequential scans started on the table

seq_tup_read

Bigint

Number of live rows fetched by sequential scans

idx_scan

Bigint

Number of index scans started on the table

idx_tup_fetch

Bigint

Number of live rows fetched by index scans

n_tup_ins

Bigint

Number of rows inserted

n_tup_upd

Bigint

Number of rows updated

n_tup_del

Bigint

Number of rows deleted

n_tup_hot_upd

Bigint

Number of rows with HOT updates (no separate index update is required).