Compatibility level

To display compatibility levels that can be set, 60 – 6.0, 65 – 6.5, 70 – 7.0, 80 – SQL Server 2000, 90 – SQL Server 2005
exec sp_dbcmptlevel
Output: Valid values of the database compatibility level are 60, 65, 70, 80, or 90.

To display compatibility level of the database
exec sp_dbcmptlevel ‘AdventureWorks’
Output: The current compatibility level is 90.

To change compatibility level of the database
exec sp_dbcmptlevel ‘AdventureWorks’, 90
Output: DBCC execution completed. If DBCC printed error messages, contact your system administrator.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.