Disk Usage per table for PostgreSQL.
This commit is contained in:
parent
c7bcdde1e5
commit
6e9423bdb1
10
pg/du.sql
Normal file
10
pg/du.sql
Normal 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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user