Re: where is pg_stat_activity (and others) in the documentation? - Mailing list pgsql-general

From Willy-Bas Loos
Subject Re: where is pg_stat_activity (and others) in the documentation?
Date
Msg-id AANLkTi=1aP0J7QWsc0r4Q7emBZjFkbhj1oxRhGsx0DUr@mail.gmail.com
Whole thread Raw
In response to Re: where is pg_stat_activity (and others) in the documentation?  (Scott Mead <scott@scottrmead.com>)
Responses Re: where is pg_stat_activity (and others) in the documentation?  (tv@fuzzy.cz)
List pgsql-general

You can find out exactly what you're waiting for by correlating this to the pg_locks table.
  Grab the 'procpid' of your waiting query and run:
  select * from pg_locks where pid=<thepid> and granted='f';
  Notice, in the pg_locks table, the logic works slightly different... if you're 'waiting' (pg_stat_activity), then you haven't been 'granted' (pg_locks).
Thanks.

I do think that we need per-column documentation of the Standard Statistics Views.
Would it be considered for the documentation if i give describing them a try?
If so, where do i send it ?

Cheers,

WBL

--
"Patriotism is the conviction that your country is superior to all others because you were born in it." -- George Bernard Shaw

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: strange row count estimates with conditions on multiple column
Next
From: maarten
Date:
Subject: Re: median for postgresql 8.3