Created
May 23, 2017 11:52
-
-
Save chanmix51/995f7576c88d541b16f1b9d2b2515aa5 to your computer and use it in GitHub Desktop.
kill connections on a specific database
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- gist from http://stackoverflow.com/questions/5108876/kill-a-postgresql-session-connection | |
-- prevent people from connecting to the database | |
revoke connect on database :db_name from public, … ; | |
SELECT | |
pg_terminate_backend(pid) | |
FROM | |
pg_stat_activity | |
WHERE | |
-- don't kill my own connection! | |
pid <> pg_backend_pid() | |
-- don't kill the connections to other databases | |
AND datname = ':db_name' | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment