Re: indexing on char vs varchar

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: josh(at)agliodbs(dot)com
Cc: Beth Gatewood <beth(at)vizxlabs(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: indexing on char vs varchar
Date: 2002-10-20 02:59:53
Message-ID: 200210200259.g9K2xr423634@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


I have updated the FAQ to mention that char()/varchar()/text/bytea have
similar performance characteristics.

---------------------------------------------------------------------------

Josh Berkus wrote:
> Beth,
>
> > Sorry....I don't understand. The length is at the front of what?
>
> In some RDBMSs, the VARCHAR data type has a 2 or 4-byte indicator of the
> length of the stored string before the data itself, while CHAR does not
> require this information because it is fixed-length. This makes the CHAR
> datatype marginally smaller, and thus faster, than the VARCHAR data type on
> those databases. This difference goes back to much older databases and
> computers, where every byte of a row counted in terms of performance.
>
> In my experience, even though MS SQL Server still functions this way, the
> performance difference between CHAR and VARCHAR is not measurable unless you
> are getting close to the 8K data page limit that MSSQL imposes. YMMV.
>
> Postgres does not materially differentiate between CHAR, VARCHAR, and TEXT,
> except that CHAR is padded by spaces and VARCHAR often has a length limit.
> However, in terms of storage efficiency (and indexing efficiency), they are
> identical. In Postgres, the character count is included in all string data
> types.
>
> Thus, you should use the data type most appropriate to the data you are
> storing, ignoring performance issues. If the data is a fixed-length string
> (such as a required zip code) use CHAR; if it's variable but limited, use
> varchar; if it's a long description, use TEXT.
>
> --
> -Josh Berkus
> Aglio Database Solutions
> San Francisco
>
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Johannes Lochmann 2002-10-20 15:26:39 Re: adding column with not null constraint
Previous Message Terry Yapt 2002-10-20 01:13:14 Restricting a VIEW.