Skip to content

Instantly share code, notes, and snippets.

@mcorsen
Created September 3, 2015 20:30
Show Gist options
  • Save mcorsen/ef8e4fa20b5581d428cf to your computer and use it in GitHub Desktop.
Save mcorsen/ef8e4fa20b5581d428cf to your computer and use it in GitHub Desktop.
-- Size of all schemas ordered by percent of total size
SELECT schema_name,
pg_size_pretty(sum(table_size)::bigint),
(sum(table_size) / pg_database_size(current_database())) * 100 AS percent
FROM (
SELECT pg_catalog.pg_namespace.nspname as schema_name,
pg_relation_size(pg_catalog.pg_class.oid) as table_size
FROM pg_catalog.pg_class
JOIN pg_catalog.pg_namespace ON relnamespace = pg_catalog.pg_namespace.oid
) t
GROUP BY schema_name
ORDER BY percent DESC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment