How long does an nvarchar field need to be before it is better to use a text field in SQL Server? What are the general indications for using one or the other for textual content that may or may not be queried?
|
From what I understand, the See this question about UPDATE (per comment): This blog does a good job at explaining the advantages. Taken from it:
So basically, For But back to the root of your question regarding efficiency, I don't think it's ever more efficient to use |
|||||
|
|
First of all don't use text at all. MSDN says:
varchar(max) is what you might need. If you compare varchar(n) vs varchar(max), these are technically two different datatypes (stored differently):
So if your row is potentially greater than 8K, you have to use varchar(max). If not, using varchar(n) will likely be preferable as it is faster to retrieve in-row data vs from outside page.
|
||||
|
|
|
The main advantage of VARCHAR over TEXT is that you can run string manipulations and string functions on it. With VARCHAR(max), now you basically have an awesome large (unrestricted) variable that you can manipulate how you want.. |
|||
|
|