Re: How to know the sizes of all tables & indexes in a database - Mailing list pgsql-admin

From adey
Subject Re: How to know the sizes of all tables & indexes in a database
Date
Msg-id 1c66bda80608091739i19ea4610jef563e394d419b08@mail.gmail.com
Whole thread Raw
In response to How to know the sizes of all tables & indexes in a database  ("Sharma;G.S." <ghanshyam@newgen.co.in>)
Responses dbsize.so for PostgreSQL 8.1.4 on Red Hat Enterprise Linux 4.0
Activating Contributions in 8.1.4
List pgsql-admin
Try:-
 
SELECT relname, relpages, CAST(reltuples AS numeric) ,
 ( (relpages*8192)/1024 ) as MB
FROM pg_class
 
...which will give you space used on disk for all data pages currently in use per table (assuming you have 8k data pages - the default).

 
On 8/9/06, Sharma;G.S. <ghanshyam@newgen.co.in> wrote:
Hi,
Postgres 7.3
Is there any way to know the size taken up by each table and indexes in postgres .
I am having a 53 GB database which contains tables , indexes, functions etc , how i can distribute these 53 GB's in database objects .
 
Thanks in advance
Disclaimer :- This e-mail message including any attachment may contain confidential, proprietary or legally privileged information. It should not be used by who is not the original intended recipient. If you have erroneously received this message, you are notified that you are strictly prohibited from using, copying, altering or disclosing the content of this message. Please delete it immediately and notify the sender. Newgen Software Technologies Ltd and / or its subsidiary Companies accept no responsibility for loss or damage arising from the use of the information transmitted by this email including damage from virus and further acknowledges that any views expressed in this message are those of the individual sender and no binding nature of the message shall be implied or assumed unless the sender does so expressly with due authority of Newgen Software Technologies Ltd and / or its subsidiary Companies, as applicable.

pgsql-admin by date:

Previous
From: adey
Date:
Subject: Re: Performance tuning question
Next
From: Bruce Momjian
Date:
Subject: Re: How to specify alternative locations for