COMPATIBILITY_LEVEL Error in SQL
--------------------If you got COMPATIBILITY_LEVEL Error, You have to read following Steps and proceed--------------------------
--COMPATIBILITY_LEVEL { 90 | 100 | 110 }
--Is the version of SQL Server with which the database is to be made compatible. The value must be one of the following:
--90 = SQL Server 2005
--100 = SQL Server 2008 and SQL Server 2008 R2
--110 = SQL Server 2012
--You have to execute the following query to clear the COMPATIBILITY_LEVEL error
ALTER DATABASE DBName
SET COMPATIBILITY_LEVEL = 100;
---------------------------------------------END-------------------------------------------------------------------------------
Comments
Post a Comment