Understanding COMPATIBILITY_LEVEL in SQL Server

情到浓时终转凉″ 提交于 2019-11-28 01:02:43

Here you can read about the differences between compatibility level 80, 90 and 100. ALTER DATABASE Compatibility Level

Apparently new data types is not affected. I think that compatibility level is there to make SQL Server "behave" like the older version, not prevent you from doing new fancy stuff.

BOL says:

Compatibility level provides only partial backward compatibility with earlier versions of SQL Server.

Also:

New functionality might work under older compatibility levels, but SET options might require adjustments.

I believe that is your case.

I understand this is an old post, but for anyone else who ends up here as I did, more information is always helpful.

It could also be that the new compatibility did not take effect before running the create table statement.

"The new compatibility setting for a database takes effect when a USE Database is issued or a new login is processed with that database as the default database." (https://msdn.microsoft.com/en-us/library/bb510680.aspx)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!