Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
jarthda
Starting Member
10 Posts |
Posted - 2013-02-13 : 12:05:52
|
Is there a way to deduce what version of SQL Serve is installed by looking at the executable and path of the agent and engine? I have a large list of installations and cannot login to them but would like to report on what version they are. These are two examples. C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\SQLAGENT90.EXE -i MSSQLSERVERC:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\SQLAGENT.EXE -i MSSQLSERVERJarthdaEmbarcadero/SQL Server/and now... Informatica |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2013-02-13 : 12:53:19
|
cant you access servers from SSMS? if yes you can useSELECT @@VERSION to get vesrion info------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
James K
Master Smack Fu Yak Hacker
3873 Posts |
|
jackv
Master Smack Fu Yak Hacker
2179 Posts |
Posted - 2013-02-14 : 10:52:14
|
SELECT SERVERPROPERTY('ProductVersion') AS Version, SERVERPROPERTY('ProductLevel') as SP - once you've logged onJack Vamvas--------------------http://www.sqlserver-dba.com |
|
|
|
|
|