I don't know if there's a limit to the number of characters if I choose nvarchar(MAX), and I'm not sure how many characters I would need anyways.
What's the standard data type to use here? I'm using SQL Server 2008 R2
|
I don't know if there's a limit to the number of characters if I choose nvarchar(MAX), and I'm not sure how many characters I would need anyways. What's the standard data type to use here? I'm using SQL Server 2008 R2 |
|||
|
|
|
The Use Reference: |
|||
|
|
|
The advantages of using nvarchar(MAX) are that you can run functions such as Replace, Left, Len etc on nvarchar(MAX) but not on ntext. ntext local variables also cannot be created in stored procedures however nvarchar(MAX) can. ntext is also likely to be deprecated in the future in favour of nvarchar(MAX) see: |
|||
|
|
|
If you don't know how many you will need I would use varchar(MAX). I think the limit is 8000 for varchar(MAX) and 4000 for nvarchar(MAX) Be careful though, try not to have too many columns in your database like this. If you can make a reasonalbe estimation do it. |
|||
|
The default setting for NVARCHAR(MAX) is to store its text value in the table structure, unless the text is over 8,000 bytes (which is 4000 double-byte chars), at which point it behaves like an NTEXT and stores the text value in the LOB, and stores a pointer to the text in the table - which gives much worse performance. In short, go for |
|||||||||||||||||
|