Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Here is an ok discussion of this. – Ólafur Waage Sep 27 '08 at 19:36
1  
I like incomudro's point, it's what led me to digging around about the difference between varchar & nvarchar in the first place. Our Java app against a SQL Server db uses myBatis, which seems to send strings as nvarchar by default (still not sure how (or if) that's overrideable). A simple query was showing up as a huge performance problem because I'd defined the column it was selecting against as varchar, not nvarchar, and it was ignoring the index on the column. – Sean Read May 2 at 16:59

11 Answers

up vote 233 down vote accepted

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.

share|improve this answer
This is great info to have. So am I understanding this correctly if I deduce that the choice ultimately becomes one of--which resource is cheaper: processor + development overhead or storage? – Matthew Patrick Cashatt Jan 15 '12 at 1:34
8  
@MatthewPatrickCashatt - You could see it that way. But if you imagine a glorious world in which all text data is in Unicode, and developers simply don't ever have to think about what encoding something is in, and a whole class of errors simply never occur, then you can see that there is really no choice at all. – Jeffrey L Whitledge Jan 18 '12 at 19:21
@JeffreyLWhitledge--Thanks! – Matthew Patrick Cashatt Jan 18 '12 at 23:34
3  
1  
@Martin Smith - In those cases, the tiny advantage that varchar confers (compact storage) vanishes. I guess varchar is even worse than I thought! – Jeffrey L Whitledge Feb 6 '12 at 0:53
show 5 more comments

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).

share|improve this answer

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

share|improve this answer
3  
@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 '09 at 17:07
1  
By the way, they do not function identically... – sixlettervariables Nov 9 '09 at 17:58
88  
I am completely dismayed that this answer, which contains at least two errors, is still the most highly ranked answer. varchar does not store ASCII, it stores an 8-bit encoding, selected at random by the person who installed the database in the middle of the night while partially intoxicated. nvarchar and varchar do not "function identically" since varchar does not function at all in lots of scenarios. nvarchar may take up twice as much space, but varchar is twice as slow, since it requires string conversions for every read and write (on those occasions when it actually works). – Jeffrey L Whitledge Jul 22 '10 at 17:28
12  
Your comment itself contains an error, Jeffrey, but I've overlooked it and given you an upvote anyway because it's otherwise brilliant. Your error is the use of the word 'partially' in the second sentence. :) – Cowan Oct 15 '10 at 21:29
1  
Down-voted and flaged because as noted by @Jeffrey, this answer is in fact incorrect. Upvoted Jeffrey's comment. – BrunoSalvino Sep 21 '11 at 20:38
show 2 more comments

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.

share|improve this answer
5  
The idea that new apps shouldn't be concerned with space restrictions is somewhat short-sighted, and anyone who has dealt with databases at the medium-to-large enterprise level will be happy to tell you, completely incorrect. – Frater Jul 21 '10 at 6:19
11  
To take the liberty of putting words in tags2k's mouth, I think a more accurate statement might be 'it's increasingly unlikely that any new apps should be more concerned about the space required than they should be about internationalisation and other character set issues'. – Cowan Oct 15 '10 at 21:38
2  
Thanks Cowan, that is what I meant... over 2 years ago. Holy smokes! – tags2k Oct 18 '10 at 9:05

It depends on how Oracle was installed. During the installation process, the NLS_CHARACTERSET option is set. You may be able to find it with the query SELECT value$ FROM sys.props$ WHERE name = 'NLS_CHARACTERSET'.

If your NLS_CHARACTERSET is a Unicode encoding like UTF8, great. Using VARCHAR and NVARCHAR are pretty much identical. Stop reading now, just go for it. Otherwise, or if you have no control over the Oracle character set, read on.

VARCHAR — Data is stored in the NLS_CHARACTERSET encoding. If there are other database instances on the same server, you may be restricted by them; and vice versa, since you have to share the setting. Such a field can store any data that can be encoded using that character set, and nothing else. So for example if the character set is MS-1252, you can only store characters like English letters, a handful of accented letters, and a few others (like € and —). Your application would be useful only to a few locales, unable to operate anywhere else in the world. For this reason, it is considered A Bad Idea.

NVARCHAR — Data is stored in a Unicode encoding. Every language is supported. A Good Idea.

What about storage space? VARCHAR is generally efficient, since the character set / encoding was custom-designed for a specific locale. NVARCHAR fields store either in UTF-8 or UTF-16 encoding, base on the NLS setting ironically enough. UTF-8 is very efficient for "Western" languages, while still supporting Asian languages. UTF-16 is very efficient for Asian languages, while still supporting "Western" languages. If concerned about storage space, pick an NLS setting to cause Oracle to use UTF-8 or UTF-16 as appropriate.

What about processing speed? Most new coding platforms use Unicode natively (Java, .NET, even C++ std::wstring from years ago!) so if the database field is VARCHAR it forces Oracle to convert between character sets on every read or write, not so good. Using NVARCHAR avoids the conversion.

Bottom line: Use NVARCHAR! It avoids limitations and dependencies, is fine for storage space, and usually best for performance too.

share|improve this answer
7  
This is a really good answer, except that the question is about sql-server. – stimms Oct 7 '10 at 21:42

Mainly nvarchar stores unicode characters and varchar stores non-unicodes characters.

"unicodes" means 16-bit character encoding scheme allowing characters from lots of other languages like Arabic, Hebrew, Chinese, Japanese, to be encoded in a single character set.

That means unicodes is using 2 bytes per character to store and nonunicodes uses only 1 byte per character to store. Which means unicodes need double capacity to store compared to non-unicodes.

share|improve this answer

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).

share|improve this answer

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.

share|improve this answer

I would say, it depends.

If you develop a desktop application, where OS works in unicode (like all current windows systems) and language does natively support unicode (default strings are unicode, like in Java or C#), then go nvarchar.

If you develop a web application, where strings come in as UTF8, and language is PHP, which still does not support unicode natively (in versions 5.x), then varchar will probably be a better choice.

share|improve this answer

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

share|improve this answer

My two cents

1) Indexes can fail when not using the correct datatypes:
In MSSQL: When you have an index over a VARCHAR column and present it a Unicode String, MSSQL-Server does not make use of the index. The same thing happens when you present a BigInt to a indexed-column containing SmallInt. Even if the BigInt is small enough to be a SmallInt, SQL-Server is not able to use the index. The other way around you do not have this problem (when providing SmallInt or Ansi-Code to an indexed BigInt ot NVARCHAR column).

2) Datatypes can vary betweeen different DBMS's (DataBase Management System):
Know that every database has slightly different datatypes and VARCHAR does not means the same everywhere. While MSSQL has VARCHAR and NVARCHAR, an Apache/Derby database has only VARCHAR and there VARCHAR is in Unicode.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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