Skip to content

Instantly share code, notes, and snippets.

@david-pm
Created June 11, 2016 18:47
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 david-pm/077642d9c5e83ef27e9499ad0a725904 to your computer and use it in GitHub Desktop.
Save david-pm/077642d9c5e83ef27e9499ad0a725904 to your computer and use it in GitHub Desktop.
See how many active connections there are to postgresql
SELECT count(*)
FROM pg_stat_activity
WHERE pid != pg_backend_pid()
AND usename = current_user;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment