Re: Quick estimate of num of rows & table size

Поиск
Список
Период
Сортировка
От Lonni J Friedman
Тема Re: Quick estimate of num of rows & table size
Дата
Msg-id CAP=oouFJ7DOEQse0wKGU=z3M5999Q+LGTx23iOLQNgpUW8PcdA@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Quick estimate of num of rows & table size  (Thalis Kalfigkopoulos <tkalfigo@gmail.com>)
Ответы Re: Quick estimate of num of rows & table size  (Thalis Kalfigkopoulos <tkalfigo@gmail.com>)
Список pgsql-general
On Mon, Nov 5, 2012 at 3:56 PM, Thalis Kalfigkopoulos
<tkalfigo@gmail.com> wrote:
>
> On Mon, Nov 5, 2012 at 7:14 PM, Lonni J Friedman <netllama@gmail.com> wrote:
>>
>> On Mon, Nov 5, 2012 at 2:02 PM, Thalis Kalfigkopoulos
>> <tkalfigo@gmail.com> wrote:
>> > Hi all,
>> >
>> > I read somewhere that the following query gives a quick estimate of the
>> > # of
>> > rows in a table regardless of the table's size (which would matter in a
>> > simple SELECT count(*)?):
>> >
>> > SELECT (CASE WHEN reltuples > 0 THEN
>> > pg_relation_size('mytable')/(8192*relpages/reltuples)
>> > ELSE 0
>> > END)::bigint AS estimated_row_count
>> > FROM pg_class
>> > WHERE oid = 'mytable'::regclass;
>> >
>> > If relpages & reltuples are recorded accurately each time VACUUM is run,
>> > wouldn't it be the same to just grab directly the value of reltuples
>> > like:
>> >
>> > SELECT reltuples FROM pg_class WHERE oid='mytable'::regclass;
>> >
>> > In the same manner, are pg_relation_size('mytable') and 8192*relpages
>> > the
>> > same?
>> >
>> > I run both assumptions against a freshly VACUUMed table and they seem
>> > correct.
>>
>> This doesn't seem to work for me.  I get an estimated row_count of 0
>> on a table that I know has millions of rows.
>
>
> Which one doesn't work exactly? The larger query? Are you on a 9.x?

doh, sorry.  The first/larger doesn't work.  As it turns out the 2nd
actually does work well.  I'm on 9.1.x.


В списке pgsql-general по дате отправления:

Предыдущее
От: Thalis Kalfigkopoulos
Дата:
Сообщение: Re: Quick estimate of num of rows & table size
Следующее
От: Thalis Kalfigkopoulos
Дата:
Сообщение: Re: Quick estimate of num of rows & table size