mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2025-12-08 20:36:04 +00:00
6 lines
270 B
SQL
6 lines
270 B
SQL
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;
|