Skip to content

Instantly share code, notes, and snippets.

@tsohr
Forked from ctrl-shift/gist:5618320
Created February 24, 2016 02:50
Show Gist options
  • Save tsohr/355e9785f7e7c40d1b48 to your computer and use it in GitHub Desktop.
Save tsohr/355e9785f7e7c40d1b48 to your computer and use it in GitHub Desktop.
postgres terminate all connections to db
select pg_terminate_backend(pid)
from pg_stat_activity
where datname = 'db name'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment