Hi AnnieDs,
>>有方法可以更改SQL的语言么?
一开始是安装的英文版,想改成中文
如果你只是想更改数据库的默认语言,只要使用下面的代码进行更改,但是这是跟login绑定的,只有新创建的登陆账户才会继承,之前你创建的登录账户需要手动修改:
EXEC sp_configure 'default language', 30 ;
GO
RECONFIGURE ;
GO
如果你是要修改数据库默认字符集,需要重新生成系统数据库。请你参考:https://www.cnblogs.com/ziqiumeng/p/7588051.html
Hope this could help you .
Best regards,
Dedmon Dai
MSDN Community Support
Please remember to click "Mark as Answer" the responses that resolved your issue, and to click "Unmark as Answer" if not. This can be beneficial to other community members reading this thread. If you have any compliments
or complaints to MSDN Support, feel free to contact
MSDNFSF@microsoft.com