Last active
May 30, 2016 12:25
-
-
Save zelark/9f57981a54401e67be03 to your computer and use it in GitHub Desktop.
helpful postgres queries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select | |
blocked_locks.pid as blocked_pid, | |
blocked_activity.usename as blocked_user, | |
blocked_activity.datname as database, | |
blocking_locks.pid as blocking_pid, | |
blocking_activity.usename as blocking_user, | |
blocked_activity.query as blocked_statement, | |
blocking_activity.query as blocking_statement | |
from pg_catalog.pg_locks blocked_locks | |
join pg_catalog.pg_stat_activity blocked_activity | |
on blocked_activity.pid = blocked_locks.pid | |
join pg_catalog.pg_locks blocking_locks | |
on blocking_locks.locktype = blocked_locks.locktype | |
and blocking_locks.database is not distinct from blocked_locks.database | |
and blocking_locks.relation is not distinct from blocked_locks.relation | |
and blocking_locks.page is not distinct from blocked_locks.page | |
and blocking_locks.tuple is not distinct from blocked_locks.tuple | |
and blocking_locks.virtualxid is not distinct from blocked_locks.virtualxid | |
and blocking_locks.transactionid is not distinct from blocked_locks.transactionid | |
and blocking_locks.classid is not distinct from blocked_locks.classid | |
and blocking_locks.objid is not distinct from blocked_locks.objid | |
and blocking_locks.objsubid is not distinct from blocked_locks.objsubid | |
and blocking_locks.pid != blocked_locks.pid | |
join pg_catalog.pg_stat_activity blocking_activity | |
on blocking_activity.pid = blocking_locks.pid | |
where not blocked_locks.granted; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select pg_terminate_backend(pid) | |
from pg_catalog.pg_stat_activity | |
where datname = 'DB_NAME' | |
and pid <> pg_backend_pid(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select * | |
from pg_catalog.pg_stat_activity | |
where datname = 'DB_NAME' | |
and pid <> pg_backend_pid(); | |
select pg_terminate_backend(PID); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment