VARCHAR VERSUS NVARCHAR
Difference between VARCHAR AND NVARCHAR
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
praveen khadePosted Mar 28, 2008, 7:41 AM
Variable-length non-Unicode character data with length of n bytes. n must be a value from 1 through 8,000. Storage size is the actual length in bytes of the data entered, not n bytes. The data entered can be 0 characters in length.
Use nchar when the sizes of the column data entries are probably going to be similar.
Use nvarchar when the sizes of the column data entries are probably going to vary considerably.
Rahul Kumar SaxenaPosted Mar 27, 2008, 5:46 AM