pg_proctab Example
markwkm=# select procpid, datname, comm, current_query, starttime, rss from pg_stat_activity, pg_proctab() where procpid = pid;
procpid | datname | comm | current_query | starttime | rss
---------+---------+----------+-----------------------------------------------------------------------------------------------------------------------+-----------+------
18321 | markwkm | postgres | select procpid, datname, comm, current_query, starttime, rss from pg_stat_activity, pg_proctab() where procpid = pid; | 1170859 | 1175
(1 row)
procpid | datname | comm | current_query | starttime | rss
---------+---------+----------+-----------------------------------------------------------------------------------------------------------------------+-----------+------
18321 | markwkm | postgres | select procpid, datname, comm, current_query, starttime, rss from pg_stat_activity, pg_proctab() where procpid = pid; | 1170859 | 1175
(1 row)
Labels: postgres, postgresql