Store unicode data in Sql Server
- Posted by Sqltimes
- On November 12, 2012
- 0 Comments
Sql Server allows storing unicode data using appropriate datatypes i.e. NVARCHAR, etc. But we can also store unicode data in non-unicode data types by specifying COLLATE keyword too. Important point here is, no matter what method you use, you must specify ‘N’ before the unicode literal in your INSERT statements. Example: [sourcecode language=”sql”] CREATE TABLE […]
Read More