vote up 28 vote down star
4

Is it just that nvarchar supports multibyte characters? If that is the case is there really any point, other than storage concerns, to using varchars?

flag

78% accept rate

9 Answers

vote up 25 vote down check

nvarchar stores unicode data while varchar stores ascii data. They function identically but nvarchar takes up twice as much space.

link|flag
so it's using utf16? why not utf8, which will use only as much space as needed. – knittl Aug 24 at 14:22
@knittl - char, nchar, varchar, and nvarchar each take a length parameter which the database engine can use to optimize storage. UTF-16 (when sticking to the BMP) has a simple two-to-one relationship between bytes of storage and characters, which the database can take advantage of. The amount of storage required for a UTF-8 string of N characters is not as clear, and could result in wasted space, or unexpectedly truncated strings. (For chars outside the BMP, UTF-16 strings could also be truncated unexpectedly, but this is less common, esp. since many OS's/dev-platforms use UTF-16 internally.) – Jeffrey L Whitledge Nov 9 at 17:07
By the way, they do not function identically... – sixlettervariables Nov 9 at 17:58
vote up 0 vote down

nVarchar will help you to store Unicode characters. It is the way to go if you want to store localized data.

link|flag
vote up 0 vote down

Here is an ok discussion of this.

link|flag
vote up 1 vote down

nvarchar stores data as unicode, so, if you're going to store multilingual data (more than one language) in a data column you need the N variant.

link|flag
vote up 20 vote down

varchar: Variable-length, non-Unicode character data. The database collation determines which code page the data is stored using.

nvarchar: Variable-length Unicode character data. Dependent on the database collation for comparisons.

Armed with this knowledge, use whichever one matches your input data (ASCII v. Unicode).

link|flag
vote up 7 vote down

I use always nvarchar as it allows whatever I'm building to withstand pretty much any data I throw at it. My CMS system does Chinese by accident, because I used nvarchar. These days, any new apps shouldn't really be concerned with the amount of space required.

link|flag
vote up 2 vote down

You're right. nvarchar stores Unicode data while varchar stores single-byte character data. Other than storage differences (nvarchar requires twice the storage space as varchar), which you already mentioned, the main reason for preferring nvarchar over varchar would be internationalization (i.e. storing strings in other languages).

link|flag
vote up 4 vote down

An nvarchar column can store any Unicode data. A varchar column is restricted to an 8-bit codepage. Some people think that varchar should be used because it takes up less space. I believe this is not the correct answer. Codepage incompatabilities are a pain, and Unicode is the cure for codepage problems. With cheap disk and memory nowadays, there is really no reason to waste time mucking around with code pages anymore.

All modern operating systems and development platforms use Unicode internally. By using nvarchar rather than varchar, you can avoid doing encoding conversions every time you read from or write to the database. Conversions take time, and are prone to errors. And recovery from conversion errors is a non-trivial problem.

If you are interfacing with an application that uses only ASCII, I would still recommend using Unicode in the database. The OS and database collation algorithms will work better with Unicode. Unicode avoids conversion problems when interfacing with other systems. And you will be preparing for the future. And you can always validate that your data is restricted to 7-bit ASCII for whatever legacy system you're having to maintain, even while enjoying some of the benifits of full Unicode storage.

link|flag
vote up 0 vote down

@tags2k

These days, any new apps shouldn't really be concerned with the amount of space required.

If it was just a storage issue then you're probably right - especially for small apps - but here is a list of reasons you may want to choose varchar over nvarchar.

  • Your app is interfacing with an older app that uses ascii data. If you store your data as ascii too there is one less thing to go wrong when you communicate with the older app.
  • You are storing vast numbers of records - half the size means you can backup your data twice as quickly and store twice as many backups.
  • If you are ever going to perform searches on your data then half the size means your searches will run twice as fast.
  • You know you will only need ascii data. You want your app to warn you if you're trying to store something else because it probably means something much worse is going on somewhere else!
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.