Skip to content

Instantly share code, notes, and snippets.

@stuntgoat
Last active August 29, 2015 14:03
Show Gist options
  • Save stuntgoat/77f7f06ca926e70fe292 to your computer and use it in GitHub Desktop.
Save stuntgoat/77f7f06ca926e70fe292 to your computer and use it in GitHub Desktop.
Check long running queries and stop them if you want.
;; Show long running queries.
SELECT pid, state, query_start, query FROM pg_stat_activity;
;; Kill a long running query.
SELECT pg_cancel_backend(<pid of the query from previous query>);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment