Created
December 24, 2018 14:24
-
-
Save flebel/fe3eae27b86b0da74c1fac24aacbc982 to your computer and use it in GitHub Desktop.
list last analyze and vacuum operations on a postgres db
This file contains 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 relname, last_vacuum, last_autovacuum, last_analyze, last_autoanalyze | |
FROM pg_stat_all_tables | |
WHERE schemaname = 'public'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment