Re: size of varchar

Поиск
Список
Период
Сортировка
От Richard Broersma Jr
Тема Re: size of varchar
Дата
Msg-id 633525.74741.qm@web31807.mail.mud.yahoo.com
обсуждение исходный текст
Ответ на size of varchar  (Andreas <maps.on@gmx.net>)
Список pgsql-novice
> Therefore I have never figured out the really necessary size for
> zip-codes, names, phone numbers and what not.
>
> Can I stay with size 255 in PG without getting a space- or speed-penalty ?
> I'll use ODBC. Is the size 255 relevant in network transfers ?

you probably can, I don't see how it would hurt. However, in postgres you don't even need to
specify a size for your varchar field.

from:
http://www.postgresql.org/docs/8.2/interactive/datatype-character.html

"
If you desire to store long strings with no specific upper limit, use text or character varying
without a length specifier, rather than making up an arbitrary length limit.)

Tip: There are no performance differences between these three types, apart from the increased
storage size when using the blank-padded type. While character(n) has performance advantages in
some other database systems, it has no such advantages in PostgreSQL. In most situations text or
character varying should be used instead.
"

However, I do not recommend for programs like access or crystal reports.  They cast the types as a
MEMO field.  Reports can groupby these unbounded varchar field.  So it is better to put limits on
them. However, of you never intend to do anything other than store text, it probably would hurt.

Regards,
Richard  Broersma Jr.

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

Предыдущее
От: Andreas
Дата:
Сообщение: size of varchar
Следующее
От: Richard Broersma Jr
Дата:
Сообщение: default_transaction_isolation