Last active
August 1, 2019 20:20
-
-
Save pazaricha/4b22dc807ee9bedb51931691819fce9b to your computer and use it in GitHub Desktop.
Usefull postgres queries
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
-- Get all tables in the db sorted by size. | |
-- Can be usefull in cases you want to do a pg_restore but want to know which tables you can exclude | |
-- and get the most amount of value from in terms of time saved | |
SELECT | |
relname as "Table", | |
pg_size_pretty(pg_total_relation_size(relid)) As "Size", | |
pg_size_pretty(pg_total_relation_size(relid) - pg_relation_size(relid)) as "External Size" | |
FROM pg_catalog.pg_statio_user_tables ORDER BY pg_total_relation_size(relid) DESC; | |
-- Get current postgres version | |
SELECT version(); | |
-- Get amount of currently active connections and how much is left: https://dba.stackexchange.com/questions/161760/number-of-active-connections-and-remaining-connections | |
select max_conn,used,res_for_super,max_conn-used-res_for_super res_for_normal | |
from | |
(select count(*) used from pg_stat_activity) t1, | |
(select setting::int res_for_super from pg_settings where name=$$superuser_reserved_connections$$) t2, | |
(select setting::int max_conn from pg_settings where name=$$max_connections$$) t3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment