Sql Server Script to find and change compatibility level of database


SQL Server Script to find and change Compatibility Level of Database

SELECT compatibility_level
FROM sys.databases WHERE name = 'YourDatabaseName';

Post a Comment

0 Comments