How to get a status of a running query in postgresql database

前端 未结 3 1317
一个人的身影
一个人的身影 2021-02-01 13:10

I have a select query running very long. How will I get a status of that query, like how long will it be running? Whether it is accessing a data from the tables or not.

N

3条回答
  •  执笔经年
    2021-02-01 13:42

    we can find the query log with respect to the database in postgres .

    select *
    from pg_stat_activity
    where datname = 'yourdatabasename'
    

    This will give active query log of database .

提交回复
热议问题