2015. 5. 11. 14:25ㆍWindows
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
'Windows' 카테고리의 다른 글
Starting Outlook and having an email pre-populated from command line (0) | 2015.08.10 |
---|---|
The Mystery of the Missing Process Performance Counter in Perfmon (0) | 2015.06.25 |
WSUS failures - Duplicate SUSClientIDs (0) | 2015.05.21 |
WinSCP Version 4.3.0 접속시 "잘못된 메모리에 접근하였습니다" 라는 오류 발생시 해결방법 (0) | 2014.10.22 |
[팁]터미널세션 원격 로그오프 (0) | 2014.10.16 |