Skip to content

Instantly share code, notes, and snippets.

@jnjcub
Created November 25, 2014 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnjcub/7516f1f01c923f6f00f2 to your computer and use it in GitHub Desktop.
Save jnjcub/7516f1f01c923f6f00f2 to your computer and use it in GitHub Desktop.
How to delete stale session from postgres
select pg_terminate_backend(pid) from pg_stat_activity where datname='dbname'
assuming all the sessions have to be terminated.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment