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

From: PFC <lists(at)peufeu(dot)com>
To: "Dawid Kuroczko" <qnex42(at)gmail(dot)com>, "Bill Moseley" <moseley(at)hank(dot)org>
Cc: "Postgres General" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Performance issues of one vs. two split tables.
Date: 2007-05-15 06:57:36
Message-ID: op.tscwaax9cigqcu@apollo13
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> Say, if you first SELECT fname, lname FROM user_table;
> and then you issue SELECT * FROM user_table; -- the
> second select will be returned from buffer cache -- since
> all rows are already in the cache.

...Unless your table contains some large TEXT columns that have been
stored out of line (TOASTed) by postgres.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Magnus Hagander 2007-05-15 07:19:46 Re: dns less connection
Previous Message Dawid Kuroczko 2007-05-15 05:51:44 Re: Performance issues of one vs. two split tables.