I have a text field that can be 30 characters in length, however it can achieve around 2.000 characters.

For "future safety", it would be nice if this new column could support until 3.000 characters. I think the average size of this field is 250 characters.

Which SQL Server 2000 data type is better to increase performance and disk space?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

Do you need unicode or nonunicode data? Use either varchar(3000) or nvarchar (3000). Don't use text or ntext as they become problematic to query or update.

To design for average length makes no sense.

link|improve this answer
feedback

If your field is going to hold up to 3000 characters, you should probably make sure your datatype will allow for something that big. Design based upon your maximum, not your average.

link|improve this answer
Thanks for participating. Do you have a suggestion for a data type to use in this case? – Victor Rodrigues Mar 6 '09 at 18:20
@Victor: A varchar(3000) would give you the most flexibility. Using a text field makes querying the contents of the field more difficult. – TheTXI Mar 6 '09 at 18:21
Also, HLGEM made a good point in including Nvarchar to the mix if you plan on accepting characters more than just your standard set of characters (such as developing for multiple languages). – TheTXI Mar 6 '09 at 18:26
feedback

This sounds like the perfect case for VarChar. Are you doing any indexing on this field?

link|improve this answer
I'll not have indexing for this field. – Victor Rodrigues Mar 6 '09 at 18:24
feedback

Your Answer

 
or
required, but never shown

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