Schema Size - PostgreSQL 9.2

From: "drum(dot)lucas(at)gmail(dot)com" <drum(dot)lucas(at)gmail(dot)com>
To: Postgres General <pgsql-general(at)postgresql(dot)org>
Subject: Schema Size - PostgreSQL 9.2
Date: 2016-03-17 20:38:30
Message-ID: CAE_gQfUvUJjojT2R8wAjpF1WTmCMW_emnLsfoLAm0n2RX4oRTA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi all,

Can you please provide me a Query that tells me how much space is a Schema
in my DB?

I'm using one but don't think it's right....

>
> SELECT schema_name,
> pg_size_pretty(sum(table_size)::bigint),
> (sum(table_size) / pg_database_size(current_database())) * 100 as a
> 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 schema_name

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Karsten Hilbert 2016-03-17 20:45:00 Re: Schema Size - PostgreSQL 9.2
Previous Message drum.lucas@gmail.com 2016-03-17 20:27:15 Re: Insert data in two columns same table