Skip to content
View dkaukov's full-sized avatar
  • OpenTable
  • Australia
Block or Report

Block or report dkaukov

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Useful PostgreSQL Queries and Commands Useful PostgreSQL Queries and Commands
    1
    -- show running queries (pre 9.2)
    2
    SELECT procpid, age(clock_timestamp(), query_start), usename, current_query 
    3
    FROM pg_stat_activity 
    4
    WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' 
    5
    ORDER BY query_start desc;