Researching the pro's and con's of SQL Server's VARCHAR vs. NVARCHAR for my particular application, I came to the realization that it would be ideal if SQL Server supported UTF8 natively. Several SO posts indicate that it does not, e.g.:

Is VARCHAR like totally 1990s?

varchar vs nvarchar performance

However then I came across this article in the MSDN documentation for SQL Server 2012 that shows how to create a UTF8String user-defined data type:

http://msdn.microsoft.com/en-us/library/ff877964(v=sql.110).aspx

It seems that UDT would allow for the space (memory, disk) benefits of 8-bits-per-character while being flexible enough to store any string that can be represented in UTF-8. Is that correct? Are there downsides to this strategy (e.g. performance cost of executing the managed code for each row, ...)?

link|improve this question

feedback

1 Answer

SQL Server 2012 supports new SC collations, which support UTF-16. See this topic for some background information. I haven't played with these collations specifically but they should support the UTF-8 character sets you need without having to go to a UDT.

link|improve this answer
One factor in favor of UTF-8 in my case is the smaller representation (on disk, in memory). While correct collation is important, it is not one of the overriding concerns for my use case. – Eric J. Jan 25 at 4:36
I think you'll just have different complications if you use a UDT. Just trying to provide you with an additional option. – Aaron Bertrand Jan 25 at 15:00
feedback

Your Answer

 
or
required, but never shown

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