Disk Usage per table for PostgreSQL.

This commit is contained in:
Bill Thiede 2014-03-27 21:35:38 -07:00
parent c7bcdde1e5
commit 6e9423bdb1

10
pg/du.sql Normal file
View File

@ -0,0 +1,10 @@
SELECT nspname || '.' || relname AS "relation",
pg_size_pretty(pg_total_relation_size(C.oid)) AS "total_size"
FROM pg_class C
LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace)
WHERE nspname NOT IN ('pg_catalog', 'information_schema')
AND C.relkind <> 'i'
AND nspname !~ '^pg_toast'
ORDER BY pg_total_relation_size(C.oid) DESC
LIMIT 20;