Created
January 15, 2016 07:09
-
-
Save anhkind/544bca35cea4652a59bb to your computer and use it in GitHub Desktop.
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
-- check the last time tables were vacuumed and analyzed | |
-- Ref: https://lob.com/blog/supercharge-your-postgresql-performance/ | |
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