Re: pg_stat_activity

From: Ron <ronljohnsonjr(at)gmail(dot)com>
To: pgsql-admin <pgsql-admin(at)postgresql(dot)org>
Subject: Re: pg_stat_activity
Date: 2018-06-11 15:07:49
Message-ID: 211b19ea-18dc-6897-3c53-8d994550cd15@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

That won't work, because that would catch any query on a table which happens
to have the string "select" in a table, index or column name.

On 06/11/2018 09:53 AM, Shreeyansh Dba wrote:
> Hi Ron,
>
> You can use LIKE  operator to get only select query and specify LIMIT as
> per your requirement.
>
> Hope this helps..
>
> <http://www.shreeyansh.com>
>
> On Mon, Jun 11, 2018 at 7:26 PM, Ron <ronljohnsonjr(at)gmail(dot)com
> <mailto:ronljohnsonjr(at)gmail(dot)com>> wrote:
>
> Thanks.
>
> How, then, do I get only long-running SELECT statements?
>
> ​​
> I've tried this (since I don't want to inadvertently get other DML &
> DDL statements
> ​​
> which might have "select" in a field name), but CTEs and queries that
> start with a comment slip by this filter.
>
> FROM pg_stat_activity
> WHERE state <> 'idle'
>   AND SUBSTRING(UPPER(query) FROM 1 FOR 6) = 'SELECT';
>
> Thanks
>
>
> On 06/11/2018 08:47 AM, Shreeyansh Dba wrote:
>> Ron,
>>
>> Yes, It can list the insert,delete and update statement as well..
>>
>> <http://www.shreeyansh.com>
>>
>> On Mon, Jun 11, 2018 at 7:07 PM, Ron <ronljohnsonjr(at)gmail(dot)com
>> <mailto:ronljohnsonjr(at)gmail(dot)com>> wrote:
>>
>> Hi,
>>
>> Does pg_stat_activity only list SELECT statements, or does it
>> also list INSERT, DELETE and UPDATE statements?
>>
>>
>
> --
> Angular momentum makes the world go 'round.
>
>

--
Angular momentum makes the world go 'round.

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Pierre Ochsenbein 2018-06-11 15:12:00 Add to watchdog cluster request is rejected by node
Previous Message Shreeyansh Dba 2018-06-11 14:53:38 Re: pg_stat_activity