Pages

Social Icons

Monday 30 April 2012

Check SQL-Server Version using Query

With the help of below query you can find the SQL-Server Version and other details.

SELECT SERVERPROPERTY('productversion') AS VERSION, 
  SERVERPROPERTY ('productlevel') AS ServicePack, 
  SERVERPROPERTY ('edition') AS Edition
OR
SELECT @@version

No comments:

Post a Comment