Is VARCHAR(100) any better than VARCHAR(500) from a performance point of view? What about disk usage?
Talking about PostgreSQL today, not some database some time in history.
|
|
Is VARCHAR(100) any better than VARCHAR(500) from a performance point of view? What about disk usage? Talking about PostgreSQL today, not some database some time in history.
|
|||
|
|
|
|
They are identical. From the PostgreSQL documentation: http://www.postgresql.org/docs/8.3/static/datatype-character.html
Here they are talking about the differences between char(n), varchar(n) and text (= varchar(1G)). The official story is that there is no difference between varchar(100) and text (very large varchar). |
||||||||||||||
|
|
|
TEXT /is/ the same as VARCHAR without an explicit length, the text
refers to both VARCHAR and TEXT (since VARCHAR(n) is just a limited version of TEXT). Limiting your VARCHARS artificially has to real storage (the overhead is based on the actual length of the string, not the length of the underlying varchar) or performance benefit, except possibly for comparisons against wildcards and regexes (but at the level where that starts to matter, you should probably be looking at something like PostgreSQL's full-text indexing support). |
|||
|
|
|
|
There is no difference between varchar(m) and varchar(n)..
There is a difference between varchar(n) and text though, varchar(n) has a built in constraint which must be checked and is actually a little slower.
|
||
|
|