Is there any problem with making all your Sql Server 2008 string columns varchar(max). My allowable string sizes are managed by the application. The database should just persist what I give it. Will I take a performance hit by declaring all string columns to be of type varchar(max) in Sql Server 2008, no matter what the size of the data that actually goes into them?
|
|
Indexes can not be over 900 bytes wide for one. So you can probably never create an index. If your data is less then 900 bytes, use varchar(900). This is one downside: because it gives
|
|||||||||||
|
|
By using If the values stored are too large then the column is allowed to spill off the page in to LOB pages, exactly as they do for other LOB types ( In fact under SQL Server 2008 or later data can overflow onto additional pages even with the fixed length data types (e.g. Short version: from a storage perspective there is no disadvantage of using (Note that this also applies to the other variable-length field types |
||||
|
|
|
Simon Sabin wrote a post on this some time back. I don't have the time to grab it now, but you should search for it, because he comes up with the conclusion that you shouldn't use varchar(max) by default. Edited: Simon's got a few posts about varchar(max). The links in the comments below show this quite nicely. I think the most significant one is http://sqlblogcasts.com/blogs/simons/archive/2009/07/11/String-concatenation-with-max-types-stops-plan-caching.aspx, which talks about the effect of varchar(max) on plan caching. The general principle is to be careful. If you don't need it to be max, then don't use max - if you need more than 8000 characters, then sure... go for it. |
|||||||||||||||
|
|
I asked the similar question earlier. got some interesting replies. check it out here There was one site that had a guy talking about the detriment of using wide columns, however if your data is limited in the application, my testing disproved it. The fact you can't create indexes on the columns means I wouldn't use them all the time (personally i wouldn't use them that much at all, but i'm a bit of a purist in that regard). However if you know there isn't much stored in them, i don't think they are that bad. If you do any sorting on columns a recordset with a varchar(max) in it (or any wide column being char or varchar), then you could suffer performance penalties. these could be resolved (if required) by indexes, but you can't put indexes on varchar(max). If you want to future proof your columns, why not just put them to something reasonable. eg a name column be 255 characters instead of max... that kinda thing. |
|||
|
|
|
For this question specifically a few points I don't see mentioned.
A couple of other reasons are covered in my answer as to why not
|
||||
|
|
|
Ideally, you should only allocate what you need. Meaning if you're certain a particular column (say a username column) is never going to be more than 20 characters long, using a VARCHAR(20) vs. a VARCHAR(MAX) lets the database optimize queries and data structures. From MSDN: http://msdn.microsoft.com/en-us/library/ms176089.aspx
Are you really going ever going to come close to 2^31-1 bytes for these columns? |
|||
|