How to check SQL Express Edition

2015. 5. 11. 14:25Windows

http://technet.microsoft.com/en-us/library/ms165662(v=sql.90).aspx

 


1. Connect to an instance of SQL Server by using the following sqlcmd command:

sqlcmd -S Server\Instance

Where Server is the name of the computer and Instance is the name of the instance you want to check. If you have used the default named instance during setup, specify the instance as "SQLExpress".

2. To identify the server name and instance name, type the following command:

 

select @@servername
go


3. When connected, type the following two commands:

 

select @@version
go


4. Alternatively, you can type the following two commands:

 

select serverproperty('edition')
go


The sqlcmd tool displays the version information. If the last line of information includes "Express Edition," the instance to which you are connecting is running SQL Server Express