Re: Field wise checking the performance. - Mailing list pgsql-performance

From Heikki Linnakangas
Subject Re: Field wise checking the performance.
Date
Msg-id 4D59204B.9010300@enterprisedb.com
Whole thread Raw
In response to Field wise checking the performance.  (dba <dbadbb@gmail.com>)
List pgsql-performance
On 14.02.2011 14:06, dba wrote:
> I have two identical tables. But the with of the fields are different. Need
> to know whether changing from varchar(100) to varchar(30) will increase the
> performance, or its just the memory access.

It will make no difference. The max length is just a constraint on what
values can be stored, it doesn't affect how the strings are stored. In
both cases, the strings are stored in a variable-length format.

--
   Heikki Linnakangas
   EnterpriseDB   http://www.enterprisedb.com

pgsql-performance by date:

Previous
From: dba
Date:
Subject: Field wise checking the performance.
Next
From: Shaun Thomas
Date:
Subject: Re: How to boost performance of queries containing pattern matching characters