What is the difference between varchar and nvarchar - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T03:57:01Z http://stackoverflow.com/feeds/question/144283 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar 28 What is the difference between varchar and nvarchar stimms 2008-09-27T19:34:00Z 2009-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#144287 25 Answer by for What is the difference between varchar and nvarchar 2008-09-27T19:35:17Z 2008-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#144293 0 Answer by Vijesh VP for What is the difference between varchar and nvarchar Vijesh VP 2008-09-27T19:36:09Z 2008-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#144295 0 Answer by Ólafur Waage for What is the difference between varchar and nvarchar Ólafur Waage 2008-09-27T19:36:20Z 2008-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#144297 1 Answer by AlbertEin for What is the difference between varchar and nvarchar AlbertEin 2008-09-27T19:36:41Z 2008-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#144300 20 Answer by sixlettervariables for What is the difference between varchar and nvarchar sixlettervariables 2008-09-27T19:37:02Z 2008-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#144302 7 Answer by tags2k for What is the difference between varchar and nvarchar tags2k 2008-09-27T19:37:21Z 2008-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#144311 2 Answer by Mike Spross for What is the difference between varchar and nvarchar Mike Spross 2008-09-27T19:42:47Z 2008-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#147302 4 Answer by Jeffrey L Whitledge for What is the difference between varchar and nvarchar Jeffrey L Whitledge 2008-09-29T02:16:22Z 2009-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#637044 0 Answer by Ractive for What is the difference between varchar and nvarchar Ractive 2009-03-12T01:16:41Z 2009-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>