Getting Started with Adobe After Effects - Part 6: Motion Blur
A collection of quick technology learning tips from what people around you learn every day

How to find which SQL Server Version/Edition you are using?

Jun 17 2011 5:36AM by Fazal Vahora   

You can use SELECT @@Version to find the Edition/Version of your SQL Server.

Read More..   [2 clicks]

Published under: SQL Server Tips ·  ·  ·  · 


Fazal Vahora
21 · 9% · 2806
6
 
6
 
 
0
Incorrect
 
0
Interesting
 
0
Forgotten



Submit

3  Comments  

  • Hello Fazal,

    Thanks for sharing nice thing here.

    We can have more information about servers with following scripts as well,

    [CODE]

    EXEC [DBO].[spserverinfo]

    SELECT CONVERT(sysname, SERVERPROPERTY('servername'));

    SELECT SERVERPROPERTY('ProductVersion') AS ProductVersion, SERVERPROPERTY('ProductLevel') AS ProductLevel, SERVERPROPERTY('Edition') AS Edition, SERVERPROPERTY('EngineEdition') AS EngineEdition;

    [/CODE]

    commented on Jun 17 2011 8:52AM
    Paresh Prajapati
    6 · 22% · 7054
  • Thank you paresh for sharing very useful information.

    commented on Jun 17 2011 9:01AM
    Fazal Vahora
    21 · 9% · 2806
  • I would use the method suggested by Paresh, i.e. using SERVERPROPERTY() instead of @@VERSION.

    Also, notice that @@VERSION returns an additional piece of information - the software platform that SQL Server is running on.

    Thanks & Regards,

    Nakul Vachhrajani

    http://beyondrelational.com/blogs/nakul/default.aspx

    Be courteous. Drive responsibly.

    commented on Jun 18 2011 8:57AM
    Nakul Vachhrajani
    4 · 33% · 10587

Your Comment


Sign Up or Login to post a comment.

"How to find which SQL Server Version/Edition you are using?" rated 5 out of 5 by 6 readers
How to find which SQL Server Version/Edition you are using? , 5.0 out of 5 based on 6 ratings
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]