From: | Jim Nasby <Jim(dot)Nasby(at)BlueTreble(dot)com> |
---|---|
To: | Venkata Balaji N <nag1010(at)gmail(dot)com>, sangeetha <tune2sangee(at)gmail(dot)com> |
Cc: | <pgsql-performance(at)postgresql(dot)org> |
Subject: | Re: pg_database_size |
Date: | 2016-06-14 21:00:11 |
Message-ID: | 29839361-b9fc-b6d1-4847-6af44f6c24ff@BlueTreble.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
On 6/4/16 3:10 AM, Venkata Balaji N wrote:
>
> On Sat, Jun 4, 2016 at 5:35 PM, sangeetha <tune2sangee(at)gmail(dot)com
> <mailto:tune2sangee(at)gmail(dot)com>> wrote:
>
> SELECT pg_database_size('DB1') takes 60ms for 7948 kB size DB. Is
> there any
> way to reduce the time taken or any other ways to find data base size?
>
>
> What is the version of PostgreSQL you are using ?
>
> You can execute the command "\l+" which will list all the databases and
> their sizes.
>
> Or you can execute "\l+ <database-name>".
Depending on your needs, you could also take the sum of
pg_class.relpages and multiply that by BLKSZ.
--
Jim Nasby, Data Architect, Blue Treble Consulting, Austin TX
Experts in Analytics, Data Architecture and PostgreSQL
Data in Trouble? Get it in Treble! http://BlueTreble.com
855-TREBLE2 (855-873-2532) mobile: 512-569-9461
From | Date | Subject | |
---|---|---|---|
Next Message | Jim Nasby | 2016-06-14 21:03:19 | Re: Clarification on using pg_upgrade |
Previous Message | Vladimir Borodin | 2016-06-13 18:58:30 | Re: [PERFORM] 9.4 -> 9.5 regression with queries through pgbouncer on RHEL 6 |