Skip to content

Instantly share code, notes, and snippets.

@moisesnarvaez
Created April 25, 2019 15:31
Show Gist options
  • Save moisesnarvaez/e87bfe60698b034cd2f0c903dde76148 to your computer and use it in GitHub Desktop.
Save moisesnarvaez/e87bfe60698b034cd2f0c903dde76148 to your computer and use it in GitHub Desktop.
PostgreSQL tables size
SELECT
schema_name,
relname,
pg_size_pretty(table_size) AS size,
table_size
FROM (
SELECT
pg_catalog.pg_namespace.nspname AS schema_name,
relname,
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
WHERE schema_name NOT LIKE 'pg_%'
ORDER BY table_size DESC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment