-
Notifications
You must be signed in to change notification settings - Fork 113
/
postgres_last_vacuum_analyze.sql
45 lines (43 loc) · 1.13 KB
/
postgres_last_vacuum_analyze.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
--
-- Author: Hari Sekhon
-- Date: 2020-08-05 17:30:04 +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 Vacuum and Analyze info
--
-- Requires PostgreSQL 9.4+ (see postgres_last_vacuum_analyze_pre94.sql for earlier versions)
--
-- Tested on PostgreSQL 9.4+, 10.x, 11.x, 12.x, 13.0
SELECT
schemaname,
relname,
n_live_tup,
n_dead_tup,
n_dead_tup / GREATEST(n_live_tup + n_dead_tup, 1)::float * 100 AS dead_percentage,
n_mod_since_analyze,
last_vacuum,
last_autovacuum,
last_analyze,
last_autoanalyze,
vacuum_count,
autovacuum_count,
analyze_count,
autoanalyze_count
FROM
pg_stat_user_tables
ORDER BY
n_dead_tup DESC,
n_mod_since_analyze DESC,
last_vacuum DESC,
last_analyze DESC,
last_autovacuum DESC,
last_autoanalyze DESC;