Skip to content

Instantly share code, notes, and snippets.

@balazs-endresz
Created April 22, 2015 12:08
Show Gist options
  • Save balazs-endresz/c6fcd91eb705004fbcfa to your computer and use it in GitHub Desktop.
Save balazs-endresz/c6fcd91eb705004fbcfa to your computer and use it in GitHub Desktop.
List long running postgres queries
\pset format wrapped;
select now() - query_start as duration, query from pg_stat_activity order by duration desc;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment