Last active
November 22, 2018 18:41
-
-
Save pmargreff/2fcc320596b152b88528d13ebceb80cd to your computer and use it in GitHub Desktop.
postgres utils
This file contains hidden or 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
# list last vacuum e autovacuum time on each table | |
SELECT relname, last_vacuum, last_autovacuum FROM pg_stat_user_tables; | |
# Tools | |
# Explain explained | |
# https://explain.depesz.com/ | |
# Articles | |
# How analyze works: | |
# https://www.depesz.com/2013/04/16/explaining-the-unexplainable/ | |
# https://www.depesz.com/2013/04/27/explaining-the-unexplainable-part-2/ | |
# https://www.depesz.com/2013/05/09/explaining-the-unexplainable-part-3/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment