pg_stat_operations

视图 pg_stat_operations 显示了关于最后一个执行在数据库对象(例如,表、索引、视图或者数据库)上或者全局对象(例如角色)的操作的细节信息。

表 1. pg_catalog.pg_stat_operations
名称类型引用描述
classnametext pg_catalog模式中的系统表的名称。The name of the system table in the pg_catalog schema where the record about this object is stored (pg_class=relations, pg_database=databases,

pg_namespace=schemas,

pg_authid=roles)

objnamename 对象名。
objidoid 对象OID。
schemanamename 对象所属的模式的模式名。
usestatustext 上一个在对象上执行操作的角色的状态(CURRENT=当前系统中活跃的角色,DROPPED=已经不再系统中的角色, CHANGED=仍然有同名的角色在系统中,但是从上次操作执行后已经发生了改变)。
usenamename 在对象上执行操作的角色的角色名。
actionnamename 执行在对象上的操作。
subtypetext 被执行操作的对象的类型或者The type of object operated on or the subclass of operation performed.
statimetimestamptz 操作的时间戳。这和写到Greenplum数据库系统日志文件的时间戳是相同的,以防需要在日志中查询更多关于操作细节的信息。

上级主题: 系统目录定义