In SQL Server 2005, are there any disadvantages to making all character fields nvarchar(MAX) rather than specifying a length explicitly, e.g. nvarchar(255)? (Apart from the obvious one that you aren't able to limit the field length at the database level)
Update:
Based on the link provided in the accepted answer it appears that:
100 characters stored in an
nvarchar(MAX)field will be stored no different to 100 characters in annvarchar(100)field - the data will be stored inline and you will not have the overhead of reading and writing data 'out of row'. So no worries there.If the size is greater than 8000 the data would be stored 'out of row' automatically, which is what you would want. So no worries there either.
However...
- You cannot create an index on an
nvarchar(MAX)column. You can use full-text indexing, but you cannot create an index on the column to improve query performance. For me, this seals the deal...it is a definite disadvantage to always use nvarchar(MAX).