Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've read up on this on MSDN forums and here and I'm still not clear. I think this is correct: Varchar(max) will be stored as a text datatype, so that has drawbacks. So lets say your field will reliably be under 8000 characters. Like a BusinessName field in my database table. In reality, a business name will probably always be under (pulling a number outta my hat) 500 characters. It seems like plenty of varchar fields that I run across fall well under the 8k character count.

So should I make that field a varchar(500) instead of varchar(8000)? From what I understand of SQL there's no difference between those two. So, to make life easy, I'd want to define all my varchar fields as varchar(8000). Does that have any drawbacks?

Related: http://stackoverflow.com/questions/177354/size-of-varchar-columns (I didn't feel like this one answered my question).

share|improve this question
2  
Imagine trying to fit a business name 500 characters long on a business card... :) – OMG Ponies Jan 5 '10 at 22:45
1  
@OMG Ponies: every time I see your username I chuckle. Now, what were you saying? (Just kidding) – jcollum Jan 5 '10 at 22:48
@jcollum: SpaceMan Spiff will always get my vote. That's not true - any Calvin & Hobbes will do, but especially the snow sculpting ones. Or the tyranosaurus flying an F-14. But I digress... – OMG Ponies Jan 5 '10 at 22:59

4 Answers

up vote 6 down vote accepted

From a processing standpoint, it will not make a difference to use varchar(8000) vs varchar(500). It's more of a "good practice" kind of thing to define a maximum length that a field should hold and make your varchar that length. It's something that can be used to assist with data validation. For instance, making a state abbreviation be 2 characters or a postal/zip code as 5 or 9 characters. This used to be a more important distinction for when your data interacted with other systems or user interfaces where field length was critical (e.g. a mainframe flat file dataset), but nowadays I think it's more habit than anything else.

share|improve this answer
2  
Makes sense... for things that naturally have a maximum length. But what do you do when the max length isn't obvious? E.g. a business name. – jcollum Jan 6 '10 at 0:11
For something like that, if I don't foresee any way to forecast what the size could potentially be, then I usually will go with a varchar(8000) or varchar(max), depending on the type of data – BBlake Jan 6 '10 at 15:15

One example where this can make a difference is that it can prevent a performance optimization that avoids adding row versioning information to tables with after triggers.

This is covered by SQL Kiwi here

The actual size of the data stored is immaterial – it is the potential size that matters.

Another is that when calculating the memory grant to allocate for SORT operations SQL Server assumes that varchar(x) columns will on average consume x/2 bytes.

If most of your varchar columns are fuller than that this can lead to the sort operations spilling to tempdb.

In your case if your varchar columns are declared as 8000 bytes but actually have contents much less than that your query will be allocated memory that it doesn't require which is obviously inefficient and can lead to waits for memory grants.

This is covered in Part 2 of SQL Workshops Webcast 1 downloadable from here or see below.

use tempdb;

CREATE TABLE T(
id INT IDENTITY(1,1) PRIMARY KEY,
number int,
name8000 VARCHAR(8000),
name500 VARCHAR(500))

INSERT INTO  T 
(number,name8000,name500)
SELECT number, name, name /*<--Same contents in both cols*/
FROM master..spt_values

SELECT id,name500
FROM T
ORDER BY number

Screenshot

SELECT id,name8000
FROM T
ORDER BY number

Screenshot

share|improve this answer
so, if almost all my values are 3 or 4 chars, cannot exceed 4 chars ever, and I want to avoid "sort operations spilling to tempdb", I will declare my column VARCHAR(8) and use a CHECK constraint to enforce that column width cannot exceed 4 chars. What do you think? – AlexKuznetsov Jan 26 '12 at 4:13
2  
@AlexKuznetsov - For that situation I would declare them as char(4) as there is 2 bytes overhead per variable column anyway. – Martin Smith Jan 26 '12 at 11:55

Apart from best practices (BBlake's answer)

  • You get warnings about maximum row size (8060) bytes and index width (900 bytes) with DDL
  • DML will die if you exceed these limits
  • ANSI PADDING ON is the default so you could end up storing a wholeload of whitespace
share|improve this answer
11  
Just to clarify about ANSI PADDING ON: when using nvarchar and varchar types, this only means that trailing spaces are preserved upon insert--not that the values are padded with spaces to the size of the column, as in char and nchar. – Ben M Jan 5 '10 at 23:15

Ideally you'd want to go smaller than that, down to a reasonably sized length (500 isn't reasonably sized) and make sure the client validation catches when the data is going to be too large and send a useful error.

While the varchar isn't actually going to reserve space in the database for the unused space, I recall versions of SQL Server having a snit about database rows being wider than some number of bytes (do not recall the exact count) and actually throwing out whatever data didn't fit. A certain number of those bytes were reserved for things internal to SQL Server.

share|improve this answer
true, this used to be a lot bigger concern as well. But nowadays, space is really cheap so I don't think it's that big a concern for consideration, at least from my point of view. – BBlake Jan 5 '10 at 23:01
"(500 isn't reasonably sized)" for what? A name? A paragraph? A blog post? It's all very relative unless there are obvious limits, like a ZIP code or SSN. – jcollum Jan 6 '10 at 0:20
@jcollum: In your example, 500 doesn't seem reasonably sized for a business name. – Otis Jan 6 '10 at 3:34
@BBlake: Regardless of the cost of storage, if SQL Server still has row size constraints than it doesn't matter how much storage you have. You could store everything in textblobs but there are some SQL operations you can't do on a blob that you can do on a varchar. – Otis Jan 6 '10 at 3:37
11  
I thought 30 or so chars was good for city names, until I saw El Pueblo de Nuestra Señora la Reina de los Ángeles del Río de Porciúncula – StuartLC Sep 22 '11 at 11:18
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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