Re: Less rows -> better performance?

Поиск
Список
Период
Сортировка
От Łukasz Filut
Тема Re: Less rows -> better performance?
Дата
Msg-id 488590D2.4080800@wsb.pl
обсуждение исходный текст
Ответ на Re: Less rows -> better performance?  (Mario Weilguni <mweilguni@sime.com>)
Список pgsql-performance
[...]
> You can check this too:
> select relname, relpages, reltuples, relkind
>  from pg_class
> where relkind in ('r', 'i')
> order by relpages desc limit 20;
>
> Will give you the top-20 tables and their sizes, 1 page is typically
> 8KB, so you can cross-check if relpages/reltuples is completly off,
> this is a good indicator for table/index bloat.
use this query :
select pg_size_pretty(pg_relation_size(oid)) as relation_size,relname,
relpages, reltuples, relkind
 from pg_class
where relkind in ('r', 'i')
order by relpages desc limit 20;

output will be much more readeable
>
> Regards,
> Mario
    Lukasz

--
Lukasz Filut
DBA - IT Group, WSB-TEB Corporation
Poznan - Poland


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

Предыдущее
От: Stephane Bailliez
Дата:
Сообщение: Re: Performance on Sun Fire X4150 x64 (dd, bonnie++, pgbench)
Следующее
От: Valentin Bogdanov
Дата:
Сообщение: Re: Perl/DBI vs Native