-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathpostgres_indexes_unused.sql
More file actions
38 lines (36 loc) · 909 Bytes
/
postgres_indexes_unused.sql
File metadata and controls
38 lines (36 loc) · 909 Bytes
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
--
-- Author: Hari Sekhon
-- Date: 2020-08-05 23:48:47 +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
--
-- PostgreSQL unused indexes
--
-- Tested on PostgreSQL 8.4, 9.x, 10.x, 11.x, 12.x, 13.0
SELECT
relname AS table,
indexrelname AS index,
idx_scan,
idx_tup_read,
idx_tup_fetch,
pg_size_pretty(pg_relation_size(indexrelname::regclass))
FROM
pg_stat_all_indexes
WHERE
schemaname = 'public'
AND
idx_scan = 0
AND
idx_tup_read = 0
AND
idx_tup_fetch = 0
ORDER BY
pg_relation_size(indexrelname::regclass) DESC;