Skip to content

Instantly share code, notes, and snippets.

@tommeier
Created May 13, 2011 03:55
Show Gist options
  • Save tommeier/969941 to your computer and use it in GitHub Desktop.
Save tommeier/969941 to your computer and use it in GitHub Desktop.
Close open sql connections in postgres for testing
SELECT COUNT(Pg_terminate_backend(procpid))
FROM pg_stat_activity
WHERE datname = '#{db_config[:database]}'
AND usename NOT IN (SELECT usename
FROM pg_user
WHERE usesuper);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment