473,796 Members | 2,445 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

List SQL servers in a network

I know this is a very common issue and I found a lot of hints on this topic
in www but I did not find a very good solution for this task.

Most of the solutions use SQLDMO to list all sql servers in the network like
this C# code:

public static string[] GetAvailableSQL Servers()
{
// declare arraylist to hold results
ArrayList servers = new ArrayList();

// create and initialize necessary SQL access objects (see SQLDMO.dll)
SQLDMO.Applicat ionClass sqlApp = new SQLDMO.Applicat ionClass();
SQLDMO.NameList sqlServers = sqlApp.ListAvai lableSQLServers ();
for(int i=0;i<sqlServer s.Count;i++)
{
object srv = sqlServers.Item (i + 1);
if(srv != null)
{
servers.Add(srv .ToString());
}
}
// convert arraylist to string array and return it
return servers.ToArray (Type.GetType(" System.String") ) as string[];
}

But there are two main problems:
- this does not work with Windows XP (see SQLDMO documentation: it works
only with Windows NT 4.0 and 2000)
- it does not work on a local PC that is not connected to the network (it
does not show any instance that is available)

Does anybody have a better solution for this task?
Aug 26 '05 #1
5 5475
Oliver,

Paste the following code into a class module:

<Code>
[DllImport("odbc 32.dll")]
private static extern short SQLAllocHandle( short hType, IntPtr inputHandle,
out IntPtr outputHandle);
[DllImport("odbc 32.dll")]
private static extern short SQLSetEnvAttr(I ntPtr henv, int attribute, IntPtr
valuePtr, int strLength);
[DllImport("odbc 32.dll")]
private static extern short SQLFreeHandle(s hort hType, IntPtr handle);
[DllImport("odbc 32.dll",CharSet =CharSet.Ansi)]
private static extern short SQLBrowseConnec t(IntPtr hconn, StringBuilder
inString,
short inStringLength, StringBuilder outString, short outStringLength ,
out short outLengthNeeded );
private const short SQL_HANDLE_ENV = 1;
private const short SQL_HANDLE_DBC = 2;
private const int SQL_ATTR_ODBC_V ERSION = 200;
private const int SQL_OV_ODBC3 = 3;
private const short SQL_SUCCESS = 0;
private const short SQL_NEED_DATA = 99;
private const short DEFAULT_RESULT_ SIZE = 1024;
private const string SQL_DRIVER_STR = "DRIVER=SQL SERVER";
public static string[] GetServers() {
string[] retval = null;
string txt = string.Empty;
IntPtr henv = IntPtr.Zero;
IntPtr hconn = IntPtr.Zero;
StringBuilder inString = new StringBuilder(S QL_DRIVER_STR);
StringBuilder outString = new StringBuilder(D EFAULT_RESULT_S IZE);
short inStringLength = (short) inString.Length ;
short lenNeeded = 0;
try {
if (SQL_SUCCESS == SQLAllocHandle( SQL_HANDLE_ENV, henv, out henv)) {
if (SQL_SUCCESS ==
SQLSetEnvAttr(h env,SQL_ATTR_OD BC_VERSION,(Int Ptr)SQL_OV_ODBC 3,0)) {
if (SQL_SUCCESS == SQLAllocHandle( SQL_HANDLE_DBC, henv, out hconn)) {
if (SQL_NEED_DATA == SQLBrowseConnec t(hconn, inString, inStringLength,
outString, DEFAULT_RESULT_ SIZE, out lenNeeded)) {
if (DEFAULT_RESULT _SIZE < lenNeeded) {
outString.Capac ity = lenNeeded;
if (SQL_NEED_DATA != SQLBrowseConnec t(hconn, inString, inStringLength,
outString, lenNeeded,out lenNeeded)) {
throw new ApplicationExce ption("Unabled to aquire SQL Servers from ODBC
driver.");
}
}
txt = outString.ToStr ing();
int start = txt.IndexOf("{" ) + 1;
int len = txt.IndexOf("}" ) - start;
txt = ((start > 0) && (len > 0)) ? txt = txt.Substring(s tart,len) :
string.Empty;
}
}
}
}
}
catch (Exception ex) {
//Throw away any error if we are not in debug mode
#if (DEBUG)
System.Windows. Forms.MessageBo x.Show(ex.Messa ge,"Fejl ved listning af SQL
Servere");
#endif
txt = string.Empty;
}
finally {
if (hconn != IntPtr.Zero) {
SQLFreeHandle(S QL_HANDLE_DBC,h conn);
}
if (henv != IntPtr.Zero) {
SQLFreeHandle(S QL_HANDLE_ENV,h conn);
}
}
// Get list of local server instances
Microsoft.Win32 .RegistryKey rk =
Microsoft.Win32 .Registry.Local Machine.OpenSub Key(@"Software\ Microsoft\Micro soft
SQL Server");
if (rk != null) {
string[] localServerList = (string[]) rk.GetValue("In stalledInstance s");
foreach (string localServerInst ance in localServerList ) {
switch (localServerIns tance.ToUpper() ) {
case "MSSQLSERVE R":
if (txt.IndexOf("( local)") == -1) txt = "(local)" + (txt.Length > 0 ? "," +
txt : "");
break;
default:
if (txt.IndexOf(Sy stem.Environmen t.MachineName + @"\" + localServerInst ance)
== -1)
txt = (System.Environ ment.MachineNam e + @"\" + localServerInst ance) +
(txt.Length > 0 ? "," + txt : "");
break;
}
}
}
txt = txt.Replace("(l ocal)", System.Environm ent.MachineName );
if (txt.Length > 0) {
retval = txt.Split(",".T oCharArray());
}
return retval;
}
</Code>
"Oliver Braun" <O.*****@oleco. net> skrev i en meddelelse
news:ux******** ******@TK2MSFTN GP14.phx.gbl...
I know this is a very common issue and I found a lot of hints on this topic
in www but I did not find a very good solution for this task.

Most of the solutions use SQLDMO to list all sql servers in the network
like this C# code:

public static string[] GetAvailableSQL Servers()
{
// declare arraylist to hold results
ArrayList servers = new ArrayList();

// create and initialize necessary SQL access objects (see SQLDMO.dll)
SQLDMO.Applicat ionClass sqlApp = new SQLDMO.Applicat ionClass();
SQLDMO.NameList sqlServers = sqlApp.ListAvai lableSQLServers ();
for(int i=0;i<sqlServer s.Count;i++)
{
object srv = sqlServers.Item (i + 1);
if(srv != null)
{
servers.Add(srv .ToString());
}
}
// convert arraylist to string array and return it
return servers.ToArray (Type.GetType(" System.String") ) as string[];
}

But there are two main problems:
- this does not work with Windows XP (see SQLDMO documentation: it works
only with Windows NT 4.0 and 2000)
- it does not work on a local PC that is not connected to the network (it
does not show any instance that is available)

Does anybody have a better solution for this task?

Aug 26 '05 #2
Hi Oliver,
- this does not work with Windows XP (see SQLDMO documentation: it works
only with Windows NT 4.0 and 2000)
It does work on XP (I have used it). The SQL Server 2000 documentation is
pre-XP.
- it does not work on a local PC that is not connected to the network (it
does not show any instance that is available)
I do not understand this question. How do you expect to be able to list SQL
Servers on the network when the standalone is not connected?
ListAvailableSQ LServers will only be able to list local instances if the
computer is not connected.

Regards, Jakob.

--
http://www.dotninjas.dk
http://www.powerbytes.dk

only with Windows NT 4.0 and 2000)

Does anybody have a better solution for this task?

Aug 26 '05 #3

"Jakob Christensen" <jc*@REMOVEpens ion.dk> schrieb im Newsbeitrag
news:EA******** *************** ***********@mic rosoft.com...
ListAvailableSQ LServers will only be able to list local instances if the
computer is not connected.


.... of course, I do not expect to get response from outside if I am not
connected but with my code I even get no response of the local instances !!!
Don't know why...

I will try the code of Benny (thanks for it). As far as I can see he looks
for local instances by accessing the local registry additionally to the
network scan.

Best regards
Oliver
Aug 26 '05 #4
It is odd that ListAvailableSQ LServers does not list local instances. It did
work in my case, though.

Regards, Jakob.

--
http://www.dotninjas.dk
http://www.powerbytes.dk
"Oliver Braun" wrote:

"Jakob Christensen" <jc*@REMOVEpens ion.dk> schrieb im Newsbeitrag
news:EA******** *************** ***********@mic rosoft.com...
ListAvailableSQ LServers will only be able to list local instances if the
computer is not connected.


.... of course, I do not expect to get response from outside if I am not
connected but with my code I even get no response of the local instances !!!
Don't know why...

I will try the code of Benny (thanks for it). As far as I can see he looks
for local instances by accessing the local registry additionally to the
network scan.

Best regards
Oliver

Aug 26 '05 #5
Hallo Benny,

your code really works very well.

Let me just tell you (and the community) an experience that I made: I tried
your code on my PC connected to a network with several SQL-servers running
on different places, even multi-instances on a workstation. Some of them did
not appear in the list of the returned servers and it took a while to find
out that this was because of the windows firewall.
Just as an information...

Best regards and many thanks to dk
Oliver
"Benny S. Tordrup" <no************ **@fk-data.nospam.dk> schrieb im
Newsbeitrag news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
Oliver,

Paste the following code into a class module:

<Code>
[DllImport("odbc 32.dll")]
private static extern short SQLAllocHandle( short hType, IntPtr
inputHandle, out IntPtr outputHandle);
[DllImport("odbc 32.dll")]
private static extern short SQLSetEnvAttr(I ntPtr henv, int attribute,
IntPtr valuePtr, int strLength);
[DllImport("odbc 32.dll")]
private static extern short SQLFreeHandle(s hort hType, IntPtr handle);
[DllImport("odbc 32.dll",CharSet =CharSet.Ansi)]
private static extern short SQLBrowseConnec t(IntPtr hconn, StringBuilder
inString,
short inStringLength, StringBuilder outString, short outStringLength ,
out short outLengthNeeded );
private const short SQL_HANDLE_ENV = 1;
private const short SQL_HANDLE_DBC = 2;
private const int SQL_ATTR_ODBC_V ERSION = 200;
private const int SQL_OV_ODBC3 = 3;
private const short SQL_SUCCESS = 0;
private const short SQL_NEED_DATA = 99;
private const short DEFAULT_RESULT_ SIZE = 1024;
private const string SQL_DRIVER_STR = "DRIVER=SQL SERVER";
public static string[] GetServers() {
string[] retval = null;
string txt = string.Empty;
IntPtr henv = IntPtr.Zero;
IntPtr hconn = IntPtr.Zero;
StringBuilder inString = new StringBuilder(S QL_DRIVER_STR);
StringBuilder outString = new StringBuilder(D EFAULT_RESULT_S IZE);
short inStringLength = (short) inString.Length ;
short lenNeeded = 0;
try {
if (SQL_SUCCESS == SQLAllocHandle( SQL_HANDLE_ENV, henv, out henv)) {
if (SQL_SUCCESS ==
SQLSetEnvAttr(h env,SQL_ATTR_OD BC_VERSION,(Int Ptr)SQL_OV_ODBC 3,0)) {
if (SQL_SUCCESS == SQLAllocHandle( SQL_HANDLE_DBC, henv, out hconn)) {
if (SQL_NEED_DATA == SQLBrowseConnec t(hconn, inString, inStringLength,
outString, DEFAULT_RESULT_ SIZE, out lenNeeded)) {
if (DEFAULT_RESULT _SIZE < lenNeeded) {
outString.Capac ity = lenNeeded;
if (SQL_NEED_DATA != SQLBrowseConnec t(hconn, inString, inStringLength,
outString, lenNeeded,out lenNeeded)) {
throw new ApplicationExce ption("Unabled to aquire SQL Servers from ODBC
driver.");
}
}
txt = outString.ToStr ing();
int start = txt.IndexOf("{" ) + 1;
int len = txt.IndexOf("}" ) - start;
txt = ((start > 0) && (len > 0)) ? txt = txt.Substring(s tart,len) :
string.Empty;
}
}
}
}
}
catch (Exception ex) {
//Throw away any error if we are not in debug mode
#if (DEBUG)
System.Windows. Forms.MessageBo x.Show(ex.Messa ge,"Fejl ved listning af SQL
Servere");
#endif
txt = string.Empty;
}
finally {
if (hconn != IntPtr.Zero) {
SQLFreeHandle(S QL_HANDLE_DBC,h conn);
}
if (henv != IntPtr.Zero) {
SQLFreeHandle(S QL_HANDLE_ENV,h conn);
}
}
// Get list of local server instances
Microsoft.Win32 .RegistryKey rk =
Microsoft.Win32 .Registry.Local Machine.OpenSub Key(@"Software\ Microsoft\Micro soft
SQL Server");
if (rk != null) {
string[] localServerList = (string[]) rk.GetValue("In stalledInstance s");
foreach (string localServerInst ance in localServerList ) {
switch (localServerIns tance.ToUpper() ) {
case "MSSQLSERVE R":
if (txt.IndexOf("( local)") == -1) txt = "(local)" + (txt.Length > 0 ? ","
+ txt : "");
break;
default:
if (txt.IndexOf(Sy stem.Environmen t.MachineName + @"\" +
localServerInst ance) == -1)
txt = (System.Environ ment.MachineNam e + @"\" + localServerInst ance) +
(txt.Length > 0 ? "," + txt : "");
break;
}
}
}
txt = txt.Replace("(l ocal)", System.Environm ent.MachineName );
if (txt.Length > 0) {
retval = txt.Split(",".T oCharArray());
}
return retval;
}
</Code>
"Oliver Braun" <O.*****@oleco. net> skrev i en meddelelse
news:ux******** ******@TK2MSFTN GP14.phx.gbl...
I know this is a very common issue and I found a lot of hints on this
topic in www but I did not find a very good solution for this task.

Most of the solutions use SQLDMO to list all sql servers in the network
like this C# code:

public static string[] GetAvailableSQL Servers()
{
// declare arraylist to hold results
ArrayList servers = new ArrayList();

// create and initialize necessary SQL access objects (see SQLDMO.dll)
SQLDMO.Applicat ionClass sqlApp = new SQLDMO.Applicat ionClass();
SQLDMO.NameList sqlServers = sqlApp.ListAvai lableSQLServers ();
for(int i=0;i<sqlServer s.Count;i++)
{
object srv = sqlServers.Item (i + 1);
if(srv != null)
{
servers.Add(srv .ToString());
}
}
// convert arraylist to string array and return it
return servers.ToArray (Type.GetType(" System.String") ) as string[];
}

But there are two main problems:
- this does not work with Windows XP (see SQLDMO documentation: it works
only with Windows NT 4.0 and 2000)
- it does not work on a local PC that is not connected to the network (it
does not show any instance that is available)

Does anybody have a better solution for this task?


Aug 26 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
1631
by: João Santa Bárbara | last post by:
Hi all i need to do a search to all my network to find the SQL servers active, but i don´t want to use SQLDMO. is there another way to do it ??? THKS JSB
1
5059
by: M | last post by:
In .NET (pref. c#) how does one get a list of all available SQL Servers, databases and tables. I need to allow the connection to a database, etc, on the fly. kind of like what happens in SQL Query Analyzer thanks m
2
2282
by: JB | last post by:
I'm trying to find out how to create a drop down that lists the Server Names on the network. Much like Sql Server does when choosing some kind of connection, it seems to autodetect them, so I'm assuming I can replicate this. Any body direct me on how to do that? Jason
1
2480
by: Piotrek Stachowicz | last post by:
Hi, I'd like to display list of all MS SQL servers which are available on the network (I write application which uses database located on one of the machines in my LAN). Has anyone got any idea what to do in order to obtain list of all such servers?! When you open Sql Service Manager (for sql server2000) you've got such list. Thanks,
1
3640
by: ALI-R | last post by:
How can I get a list of all servers in the network??? Thanks for your help
1
2613
by: Alexander Wehrli | last post by:
Hi, How can I get a list of all Oracle Servers in my network? It isn't possible by calling NetServerEnum, the matching ServerType does not exist. Any idea? Regards Alexander
3
3877
by: Steve | last post by:
Hi all How would i get a list of all Active Computers on a network? All I need are the computer names. Kind Regards, Steve.
1
4606
by: Roger | last post by:
I would like to get a list of machines on my network (Workstations and/or Servers). Is there a way to do this in VB.Net? Thanks, Rog
5
429
by: Oliver Braun | last post by:
I know this is a very common issue and I found a lot of hints on this topic in www but I did not find a very good solution for this task. Most of the solutions use SQLDMO to list all sql servers in the network like this C# code: public static string GetAvailableSQLServers() { // declare arraylist to hold results ArrayList servers = new ArrayList();
0
10453
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10223
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10172
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10003
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9050
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6785
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5441
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5573
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2924
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.