Re: Get SQL Server version of each instance installed
- From: "Richard Mueller [MVP]" <rlmueller-nospam@xxxxxxxxxxxxxxxxxxxx>
- Date: Thu, 18 Sep 2008 14:13:19 -0500
I looked for a way to enumerate all instances, but the only solution I found
used .NET. There must be an SQL query (when you connect to the default
instance) to do this, but I could not find it. One way would be to run "net
start" and parse everything that starts with MSSQL$ for instance names,
except under newer versions of SQL the service seems to be named:
SQL Server (<instance name>)
--
Richard Mueller
MVP Directory Services
Hilltop Lab - http://www.rlmueller.net
--
"Carlos Felipe França da Fonseca" <carlosfelipefranca@xxxxxxxxx> wrote in
message news:OqiA6rbGJHA.2468@xxxxxxxxxxxxxxxxxxxxxxx
Thanks for your reply, Richard.
I'm going to run this solution on many servers, locally and monthly using
Tivoli monitoring. The reason of running that is for auditing purposes.
The problem is that I don't know how many instances each server is
running.
So, we'll need to discover how many instances the server is running and
also
their respective versions.
We'll confirm if all licences for all instances are available and if each
server really has the number of instances mentioned in the support
contract.
Thanks again,
Felipe
"Richard Mueller [MVP]" <rlmueller-nospam@xxxxxxxxxxxxxxxxxxxx> wrote in
message news:ObEOzHbGJHA.4760@xxxxxxxxxxxxxxxxxxxxxxx
Felipe wrote:
I'm looking for a way to get the version of each SQL Server instances
installed locally on a server.
Does anybody know the best way of doing that?
I use a VBScript program. You would need a connection string for each
instance.
===========
' Retrieve SQL Server version.
Option Explicit
Dim strConnect, adoConnection, adoRecordset, objShell
Dim strVersion, strLevel, strEdition
' Construct connection string for PocketLunch database.
strConnect = "DRIVER=SQL Server;" _
& "Trusted_Connection=Yes;" _
& "DATABASE=Master;" _
& "SERVER=MyServer\MyInstance"
' Create ADO objects and connect to PocketLunch database.
Set adoConnection = CreateObject("ADODB.Connection")
adoConnection.ConnectionString = strConnect
adoConnection.Open
Set adoRecordset = CreateObject("ADODB.Recordset")
Set adoRecordset.ActiveConnection = adoConnection
' Retrieve balances for each account as of specified date.
adoRecordset.Source = "SELECT SERVERPROPERTY('productversion') AS
Version, " _
& "SERVERPROPERTY('productlevel') AS Level, " _
& "SERVERPROPERTY('edition') AS Edition"
adoRecordset.Open
' Enumerate account balances.
Do Until adoRecordset.EOF
strVersion = adoRecordset.Fields("Version").Value
strLevel = adoRecordset.Fields("Level").Value
strEdition = adoRecordset.Fields("Edition").Value
Wscript.Echo "Version: " & strVersion
Wscript.Echo "Level: " & strLevel
Wscript.Echo "Edition: " & strEdition
adoRecordset.MoveNext
Loop
' Clean up.
adoRecordset.Close
adoConnection.Close
==========
Otherwise, you can run the query (the Source property of the ADO
Recordset object above) with a command line tool or GUI.
--
Richard Mueller
MVP Directory Services
Hilltop Lab - http://www.rlmueller.net
--
.
- Follow-Ups:
- Re: Get SQL Server version of each instance installed
- From: Carlos Felipe França da Fonseca
- Re: Get SQL Server version of each instance installed
- References:
- Get SQL Server version of each instance installed
- From: Carlos Felipe França da Fonseca
- Re: Get SQL Server version of each instance installed
- From: Richard Mueller [MVP]
- Re: Get SQL Server version of each instance installed
- From: Carlos Felipe França da Fonseca
- Get SQL Server version of each instance installed
- Prev by Date: Re: Get SQL Server version of each instance installed
- Next by Date: Re: basic map drive scripts
- Previous by thread: Re: Get SQL Server version of each instance installed
- Next by thread: Re: Get SQL Server version of each instance installed
- Index(es):
Relevant Pages
|