pg_postmaster_start_time()

返回主服务器进程启动时间的函数

pg_postmaster_start_time() 是一个系统函数,返回主服务器进程启动时间,数据类型为 TIMESTAMP WITH TIME ZONE

pg_postmaster_start_time()PostgreSQL 8.1 中添加。

用法

pg_postmaster_start_time() → timestamp with time zone

pg_postmaster_start_time() 返回 PostgreSQL 本身的启动时间。

要获取各个后端的启动时间,请参见 pg_stat_activitypg_stat_get_backend_start()backend_start 列。

更改历史

示例

postgres=# SELECT pg_postmaster_start_time();
   pg_postmaster_start_time    
-------------------------------
 2020-09-12 13:39:35.376203+00
(1 row)

类别

系统函数

另请参阅

pg_conf_load_time()

反馈

请在此处提交对 "pg_postmaster_start_time()" 的任何评论、建议或更正 此处