Re: pg_stat_activity - Mailing list pgsql-admin

From Shreeyansh Dba
Subject Re: pg_stat_activity
Date
Msg-id CAGDYbUPbY7MFcntGwTdxikxXahccKQTASApYGz=wPPksGMWJVg@mail.gmail.com
Whole thread Raw
In response to Re: pg_stat_activity  (Ron <ronljohnsonjr@gmail.com>)
Responses Re: pg_stat_activity
List pgsql-admin
Hi Ron,

You can use LIKE  operator to get only select query and specify LIMIT as per your requirement.

Hope this helps..



On Mon, Jun 11, 2018 at 7:26 PM, Ron <ronljohnsonjr@gmail.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..



On Mon, Jun 11, 2018 at 7:07 PM, Ron <ronljohnsonjr@gmail.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.

pgsql-admin by date:

Previous
From: Debraj Manna
Date:
Subject: Removing WALS when replication slot is not busy
Next
From: Ron
Date:
Subject: Re: pg_stat_activity