Re: [Solved] SQL Server to PostgreSQL

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: adam(dot)rossi(at)platinumsolutions(dot)com
Cc: "Jan Wieck" <janwieck(at)Yahoo(dot)com>, "Martin Christensen" <knightsofspamalot-factotum(at)mail1(dot)stofanet(dot)dk>, "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: [Solved] SQL Server to PostgreSQL
Date: 2000-09-03 14:03:08
Message-ID: SAK.2000.09.03.spadtemb@acr1
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-hackers

Ian Turner <vectro(at)pipeline(dot)com> writes:
> Don't variable-length records incur a performance overhead?

Only to the extent that the system can't cache offset information for
later columns in that table. While someone evidently once thought that
was worthwhile, I've never seen the column-access code show up as a
particularly hot spot in any profile I've run. I doubt you could
actually measure any difference, let alone show it to be important
enough to be worth worrying about.

In any case, char(n) will still do what you want for reasonable-size
records. The TOAST code only kicks in when the total tuple size exceeds
BLCKSZ/4 ... and at that point, compression is a good idea in any case.

Now that you mention it, though, doesn't TOAST break heapam's assumption
that char(n) is fixed length? Seems like we'd better either remove that
assumption or mark char(n) nontoastable. Any opinions which is better?

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Jan Wieck 2000-09-03 14:04:04 Re: PL/Perl compilation error
Previous Message Jan Wieck 2000-09-03 14:02:51 Re: [Solved] SQL Server to PostgreSQL

Browse pgsql-hackers by date

  From Date Subject
Next Message Jan Wieck 2000-09-03 14:04:04 Re: PL/Perl compilation error
Previous Message Jan Wieck 2000-09-03 14:02:51 Re: [Solved] SQL Server to PostgreSQL