Re: Obtaining the exact size of the database. - Mailing list pgsql-performance

From Tom Lane
Subject Re: Obtaining the exact size of the database.
Date
Msg-id 25289.1277048081@sss.pgh.pa.us
Whole thread Raw
In response to Re: Obtaining the exact size of the database.  (Dave Crooke <dcrooke@gmail.com>)
List pgsql-performance
Dave Crooke <dcrooke@gmail.com> writes:
> 4. If you're trying to figure out the net size of the table, i.e. how much
> free space is inside the table files for reuse by PG, then you need the
> pg_stat_tuple function ... this is built in to PG 8.4, and a plug-in
> activated by a script for PG 8.3, don't know if it exists in 8.1 or not.
> Like SELECT COUNT(*) this requires a full table scan.

I think what the OP actually wants is the number of live rows, so plain
old SELECT COUNT(*) would do it.  If that's too slow, a good alternative
is to ANALYZE the table and then look at its pg_class.reltuples entry
--- of course that will only be an approximate count.

            regards, tom lane

pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: Slow function in queries SELECT clause.
Next
From: Jesper Krogh
Date:
Subject: Aggressive autovacuuming ?