SQL Server 兼容性级别问题 - 已禁用
我有一个名为 TransportDB
的数据库,其兼容性级别设置为 SQL Server 2000 (80)
。我想将此数据库的兼容性级别更改为 SQL Server 2005 (90)
或 2008 (100)
,但是当我使用 Properties--> 更改此设置时,选项-->兼容性级别,我发现该兼容性级别选项被禁用,即我无法更改兼容性级别。
我想知道如何更改兼容性级别,如果我要更改它,这会以任何方式影响我当前的数据库或记录吗?
I have one database named TransportDB
whose compatibility level is set to SQL Server 2000 (80)
. I want to change the compatibility level of this DB to SQL Server 2005 (90)
or 2008 (100)
, but when I go to change this using Properties-->Options-->Compatibility level, I found that this compatibility level option is disabled i.e. I can't change the compatibility level.
I want to know how to change compatibility level and if I will change it, will this effect my current database or records in any way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这个 SQL
当然,您可以为
@new_cmptlevel
使用不同的值。Try this SQL
You can use different values for
@new_cmptlevel
of course.