Re: Is there an equivalent for Oracle's user_tables.num_rows

From: "Virag Saksena" <virag(at)auptyma(dot)com>
To: <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Is there an equivalent for Oracle's user_tables.num_rows
Date: 2007-02-10 01:08:47
Message-ID: 00c801c74cb0$04a27820$2900000a@demo01
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Thanks, that is exactly what I was looking for

I know that number of rows may not be the best indicator, but it is a
heuristic that can be tracked
easily, causing analyze for the first x insert events, and then only doing
it only when an insert event causes
total rows to exceed y % of the optimizer perceived rows

Other more accurate heuristics like relative distribution of columns would
be harder to track in the application,
and I'd rather let the database do that by issuing the analyze

Regards,

Virag

----- Original Message -----
From: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Virag Saksena" <virag(at)auptyma(dot)com>
Cc: <pgsql-performance(at)postgresql(dot)org>
Sent: Friday, February 09, 2007 4:45 PM
Subject: Re: [PERFORM] Is there an equivalent for Oracle's
user_tables.num_rows

> "Virag Saksena" <virag(at)auptyma(dot)com> writes:
>> Does someone know of a way of telling what the optimizer believes the =
>> number of rows are ?
>
> You're looking in the wrong place; see pg_class.relpages and reltuples.
>
> But note that in recent releases neither one is taken as gospel.
> Instead the planner uses the current physical table size in place of
> relpages, and scales reltuples correspondingly. So neither steady
> growth nor truncation create a need for re-ANALYZE; at least not as long
> as the other statistics don't change too much.
>
> regards, tom lane
>

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Merlin Moncure 2007-02-10 01:31:34 Re: cube operations slower than geo_distance() on production server
Previous Message Simon Riggs 2007-02-10 01:06:37 Re: Is there an equivalent for Oracle'suser_tables.num_rows