You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 databasesAND datname ='database_name'
;