Home Article SQL Server How to identify your SQL Server version, edition, Level etc 
How to identify your SQL Server version, edition, Level etc PDF Print E-mail
User Rating: / 1
PoorBest 
SQL Server - Articles
Written by Sarabpreet Singh   

This article describes how to identify your current Microsoft SQL Server version number and the corresponding product or service pack level. It also describes how to identify the specific edition of SQL Server you are using.

 

 

T-SQL Script

SELECT

SERVERPROPERTY('ProductVersion') AS ProductVersion,

SERVERPROPERTY('ProductLevel') AS ProductLevel,

SERVERPROPERTY('Edition') AS Edition,

SERVERPROPERTY('MachineName') AS ServerName,

SERVERPROPERTY('Collation') AS ServerCollation

Go

 

 

 

 

 

Comments
RSS
adisionphilip     |Registered |2011-09-16 05:55:49
For MS SQL Server 7.0 run given below command:

“SELECT @@VERSION”
Only registered users can write comments!

3.26 Copyright (C) 2008 Compojoom.com / Copyright (C) 2007 Alain Georgette / Copyright (C) 2006 Frantisek Hliva. All rights reserved."

 

Statistics

Content View Hits : 63198

Powered by Solutions-Guru.com!. Designed by: budget hosting reseller hosting packages Valid XHTML and CSS.