January 27, 2009 at 2:46 am
January 27, 2009 at 3:18 am
do you have a list of the 3000+ servers? you could create an SSIS package that connects to each server and runs a query which populates a table in a database on a central server.
January 27, 2009 at 3:22 am
January 27, 2009 at 4:27 am
have u got a list of server Instance name, if so load them on a table and run ur command across all the servers from a SP 🙂
Hope this helps
January 27, 2009 at 7:10 am
Idera's "SQL Admin Toolset" comes with a tool called "Multi Query" that allows you to run the same SQL query against any number of named instances.
Come to think of it, there is also a tool called "Patch Analyser" within that same product which will give the version information of all the servers within your estate.
I believe you can download a time-limited trial of the product from Idera's website.
January 27, 2009 at 8:17 am
you can use "Microsoft Assessment and Planning Toolkit" , free tool from microsoft.
the tool scans the computers based on a file with list of computer names or a range of IP's or across a domain.
January 27, 2009 at 10:35 pm
January 29, 2009 at 12:55 am
Hi
The command select @@version
in the query window returns this:
Microsoft SQL Server 2005 - 9.00.3282.00 (Intel X86) Aug 5 2008 01:01:05 Copyright (c) 1988-2005 Microsoft Corporation Standard Edition on Windows NT 5.2 (Build 3790: Service Pack 2)
or even better if you like it more structured:
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
returns 3 columns containing this:
9.00.3282.00SP2Standard Edition
Check this Microsoft KB article http://support.microsoft.com/default.aspx?scid=kb;en-us;q321185
Hope this is of help.
January 29, 2009 at 1:12 am
Idera's multi query suggestion is good option.
-:)
March 16, 2010 at 1:24 am
Hi ,
This will help you........................
SELECT
SERVERPROPERTY('productversion') AS Version,
SERVERPROPERTY ('productlevel') AS ProductInfo,
SERVERPROPERTY ('edition') AS Edition
[font="Arial"][font="Verdana"][/font][/font]
With Regards
Sentil Kumar
"Give god first place in your heart
He will take you to places that you have never dreamed off"
Viewing 10 posts - 1 through 9 (of 9 total)
You must be logged in to reply to this topic. Login to reply