Some times, it is very hard for you to check your SQL Server version even log into the console as the about of SQL Server did not actually mentioned the actual version.
To get it done, you may run a query from the SQL Management where this is applied to SQL Server 2008, 2005 and 2000.
Open your SQL Server Management and enter the following query to the New Query file.
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
One thought on “To Identify your SQL Server Version”
Comments are closed.