Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

PostgreSQL Script to kill 'idle', 'idle in transaction', 'idle in transaction (aborted)', 'disabled' sessions of a Database

In this post, I am sharing one of the important script to kill all running idle connections and sessions of the PostgreSQL Database.

I have prepared this script such a way that you can also filter idle connections base on a particular time interval.


We are Database Administrator, and this is our responsibility to check idle connection periodically and if it requires to kill, we should do it.


To kill the connections is always not advisable, but in large systems where lots of transactions are going on in that situation we should kill idle connections base on a particular time interval.

SELECT pg_terminate_backend(pid)
FROM pg_stat_activity
WHERE datname = 'Database_Name'
 AND pid <> pg_backend_pid()
 AND state in ('idle', 'idle in transaction', 'idle in transaction (aborted)', 'disabled') 
 AND state_change < current_timestamp - INTERVAL '15' MINUTE;

Comments

Popular posts from this blog

VMWARE WORKSTATION 3,4,5,6,7,8,9,10,11,12,14,15...etc LICENSE KEYS COLLECTION

How to find the server is whether standby (slave) or primary(master) in Postgresql replication ?

Oracle to Postgresql migration

PostgreSQL Enterprise Manager - PEM Monitoring Tools

7 Steps to configure BDR replication in postgresql