Re: Performance issues of one vs. two split tables.

Поиск
Список
Период
Сортировка
От PFC
Тема Re: Performance issues of one vs. two split tables.
Дата
Msg-id op.tsdnn5j2cigqcu@apollo13
обсуждение исходный текст
Ответ на Re: Performance issues of one vs. two split tables.  (Bill Moseley <moseley@hank.org>)
Список pgsql-general
>     SELECT o.id
>     FROM order o
>     JOIN customer c on o.customer = c.id
>
> Does that bring into memory all columns from both order and customer?
> Maybe that's not a good example due to indexes.

    No, it just pulls the columns you ask from the table, nothing less,
nothing more.

    Splitting tables (vertical partitioning) is used to reduce the size of
the working set that has to fit in RAM... this is a different reason than
what you're thinking about.

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

Предыдущее
От: Bill Moseley
Дата:
Сообщение: Re: Performance issues of one vs. two split tables.
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: I have some problems while installing PostgreSQL