Sunday 19 July 2015

How to know sql server version and edition?


         







 We can easily identify the server version and edition by execute an SQL query in SQL server. Here is the code ...




SELECT Serverproperty('Edition')        AS Edition,
       Serverproperty('ProductVersion') AS ProductVersion 

No comments:

Post a Comment