如何设置sql Server 2005 DBMS,以便可以使用不同语言存储数据?
我确切的问题是:在sql Server Management Studio中,我正在编写一个包含德语变音符号的插入语句.文本已成功保存,但读取相同的值会导致文本没有变音符号.
考虑到我必须支持4种语言:英语,德语,希腊语和俄语(我不想想我将用俄语文本面对什么).
DBMS现在设置为希腊语排序规则(以支持希腊语).
这会导致任何问题吗?
任何提示?
解决方法
您需要为字符串使用nvarchar数据类型(
http://msdn.microsoft.com/en-us/library/ms186939.aspx),并且还需要在所有unicode字符串之前加上N(
http://support.microsoft.com/kb/239530).
When dealing with Unicode string constants in sql Server you must precede all Unicode strings with a capital letter N,as documented in the sql Server Books Online topic “Using Unicode Data”. The “N” prefix stands for National Language in the sql-92 standard,and must be uppercase. If you do not prefix a Unicode string constant with N,sql Server will convert it to the non-Unicode code page of the current database before it uses the string.