vote up 0 vote down star

Similar question, but for Oracle.

Why would I not always want to choose VARCHAR(MAX)?

flag

71% accept rate

3 Answers

vote up 6 vote down check

Because it doesn't work in Oracle! You could declare all columns as VARCHAR2(4000) if you wanted, but it isn't recommended by any means. There will be no difference in storage or performance of the database, but:

  • you lose a constraint on the sensible values that can be stored in the column
  • some client applications will allocate 4000 bytes of memory to receive data from the column when (say) 10 is all it will ever contain.
link|flag
1  
Not just client applications, but PL/SQL too. Also, you want to consider what happens when you want to concatenate two columns together (eg to format an address line for an envelope). – Gary Nov 3 at 21:44
vote up 3 vote down

For starters, Oracle doesn't have a VARCHAR(MAX) datatype

Reference:

link|flag
vote up 7 vote down

Probably because Oracle does not support VARCHAR(MAX).

VARCHAR should not be used in Oracle at all.

As for now, it's a synonym for VARCHAR2, but it may change in future so that it will distinguish between an empty string and a NULL.

VARCHAR is supposed to do it but doesn't in current versions of Oracle, and hence should not be used.

In Oracle, maximum length for a VARCHAR2 is 4000 in SQL and 32767 in PL/SQL.

For larger values, you should use CLOB, but it's very different from a VARCHAR2. You should use special methods to access it, etc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.