Re: where is pg_stat_activity (and others) in the documentation?
От | Willy-Bas Loos |
---|---|
Тема | Re: where is pg_stat_activity (and others) in the documentation? |
Дата | |
Msg-id | AANLkTi=1aP0J7QWsc0r4Q7emBZjFkbhj1oxRhGsx0DUr@mail.gmail.com обсуждение исходный текст |
Ответ на | Re: where is pg_stat_activity (and others) in the documentation? (Scott Mead <scott@scottrmead.com>) |
Ответы |
Re: where is pg_stat_activity (and others) in the
documentation?
|
Список | 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
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 по дате отправления: