Last active
April 3, 2020 08:15
-
-
Save zhuomingliang/0505cbab49e8d10b96433272493d4d10 to your computer and use it in GitHub Desktop.
PostgreSQL查看每个表大小
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 | |
schemaname as schema, | |
tablename as table_name, | |
pg_size_pretty(pg_relation_size(schemaname || '.' || tablename)) AS size_p, | |
pg_total_relation_size(schemaname || '.' || tablename) AS siz, | |
pg_size_pretty(pg_total_relation_size(schemaname || '.' || tablename)) AS 表总大小, | |
pg_total_relation_size(schemaname || '.' || tablename) - pg_relation_size(schemaname || '.' || tablename) AS 索引大小, | |
(100*(pg_total_relation_size(schemaname || '.' || tablename) - pg_relation_size(schemaname || '.' || tablename)))/CASE WHEN pg_total_relation_size(schemaname || '.' || tablename) = 0 THEN 1 ELSE pg_total_relation_size(schemaname || '.' || tablename) END || '%' AS index_pct | |
FROM pg_tables | |
ORDER BY siz DESC; | |
SELECT CONCAT(n.nspname,'.', c.relname) AS table, | |
i.relname AS index_name, pg_size_pretty(pg_relation_size(x.indrelid)) AS table_size, | |
pg_size_pretty(pg_relation_size(x.indexrelid)) AS index_size, | |
pg_size_pretty(pg_total_relation_size(x.indrelid)) AS total_size | |
FROM pg_class c | |
JOIN pg_index x ON c.oid = x.indrelid | |
JOIN pg_class i ON i.oid = x.indexrelid | |
LEFT JOIN pg_namespace n ON n.oid = c.relnamespace | |
WHERE c.relkind = ANY (ARRAY['r', 't']) | |
AND n.oid NOT IN (99, 11, 12375); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment