What is the difference between varchar and nvarchar - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T03:57:01Zhttp://stackoverflow.com/feeds/question/144283http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar28What is the difference between varchar and nvarcharstimms2008-09-27T19:34:00Z2009-11-04T16:25:33Z
<p>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? </p>
http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar/144287#14428725Answer by for What is the difference between varchar and nvarchar2008-09-27T19:35:17Z2008-09-27T19:35:17Z<p>nvarchar stores unicode data while varchar stores ascii data. They function identically but nvarchar takes up twice as much space.</p>
http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar/144293#1442930Answer by Vijesh VP for What is the difference between varchar and nvarcharVijesh VP2008-09-27T19:36:09Z2008-09-27T19:36:09Z<p>nVarchar will help you to store Unicode characters. It is the way to go if you want to store localized data.</p>
http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar/144295#1442950Answer by Ólafur Waage for What is the difference between varchar and nvarcharÓlafur Waage2008-09-27T19:36:20Z2008-09-27T19:36:20Z<p><a href="http://weblogs.asp.net/guys/archive/2005/01/15/353550.aspx" rel="nofollow">Here is</a> an ok discussion of this.</p>
http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar/144297#1442971Answer by AlbertEin for What is the difference between varchar and nvarcharAlbertEin2008-09-27T19:36:41Z2008-09-27T19:36:41Z<p>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.</p>
http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar/144300#14430020Answer by sixlettervariables for What is the difference between varchar and nvarcharsixlettervariables2008-09-27T19:37:02Z2008-09-27T19:42:24Z<p><a href="http://msdn.microsoft.com/en-us/library/ms176089.aspx" rel="nofollow"><strong>varchar</strong></a>: Variable-length, non-Unicode character data. The database collation determines which code page the data is stored using.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms186939.aspx" rel="nofollow"><strong>nvarchar</strong></a>: Variable-length Unicode character data. Dependent on the database collation for comparisons.</p>
<p>Armed with this knowledge, use whichever one matches your input data (ASCII v. Unicode).</p>
http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar/144302#1443027Answer by tags2k for What is the difference between varchar and nvarchartags2k2008-09-27T19:37:21Z2008-09-27T19:37:21Z<p>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.</p>
http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar/144311#1443112Answer by Mike Spross for What is the difference between varchar and nvarcharMike Spross2008-09-27T19:42:47Z2008-10-02T01:38:03Z<p>You're right. <code>nvarchar</code> stores Unicode data while <code>varchar</code> stores single-byte character data. Other than storage differences (<code>nvarchar</code> requires twice the storage space as <code>varchar</code>), which you already mentioned, the main reason for preferring <code>nvarchar</code> over <code>varchar</code> would be internationalization (i.e. storing strings in other languages).</p>
http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar/147302#1473024Answer by Jeffrey L Whitledge for What is the difference between varchar and nvarcharJeffrey L Whitledge2008-09-29T02:16:22Z2009-11-04T16:25:33Z<p>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.</p>
<p>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.</p>
<p>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 <em>other</em> 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.</p>
http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar/637044#6370440Answer by Ractive for What is the difference between varchar and nvarcharRactive2009-03-12T01:16:41Z2009-03-12T01:16:41Z<p>@tags2k </p>
<blockquote>
<p>These days, any new apps shouldn't really be concerned with the amount of space required.</p>
</blockquote>
<p>If it was <em>just</em> 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 <strong>over</strong> nvarchar.</p>
<ul>
<li>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.</li>
<li>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.</li>
<li>If you are ever going to perform searches on your data then half the size means your searches will run twice as fast.</li>
<li>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!</li>
</ul>