-
Notifications
You must be signed in to change notification settings - Fork 111
/
postgres_locks.sql
47 lines (43 loc) · 1008 Bytes
/
postgres_locks.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
--
-- Author: Hari Sekhon
-- Date: 2020-08-05 18:16:55 +0100 (Wed, 05 Aug 2020)
--
-- vim:ts=4:sts=4:sw=4:et:filetype=sql
--
-- https://github.com/HariSekhon/SQL-scripts
--
-- License: see accompanying Hari Sekhon LICENSE file
--
-- If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
--
-- https://www.linkedin.com/in/HariSekhon
--
-- List PostgreSQL Locks
--
-- Tested on PostgreSQL 8.4, 9.x, 10.x, 11.x, 12.x, 13.0
-- https://wiki.postgresql.org/wiki/Lock_Monitoring
SELECT
t.schemaname,
t.relname,
-- l.database, -- id number is less useful, take schemaname from join instead
l.locktype,
page,
virtualtransaction,
pid,
mode,
granted
FROM
pg_locks l,
--pg_stat_user_tables t
pg_stat_all_tables t
WHERE
l.relation = t.relid
ORDER BY
relation ASC;
SELECT
relation::regclass AS relation_regclass,
*
FROM
pg_locks
WHERE
NOT granted;