How can i extract the list of available SQL servers in an SQL server group? Im planning to put that list in a combobox in vb.net. Thank you.
|
|
The only way I knew to do it was using the command line:
But I found the below article which seems to solve your specific goal filling a combobox: |
||
|
|
|
|
If you didn't want to be tied to SQL SMO, which is what Ben's article uses, you can do something like this to discover all SQL servers on your network:
The SqlDataSourceEnumerator class is nice because it gives you SQL server discovery right out of the 2.0 framework. |
||
|
|
|
In C# I've used calls to odbc32.dll for example: [DllImport("odbc32.dll", CharSet = CharSet.Ansi)] private static extern short SQLBrowseConnect( IntPtr hconn, StringBuilder inString, short inStringLength, StringBuilder outString, short outStringLength, out short outLengthNeeded); documentation for that function is on MSDN http://msdn.microsoft.com/en-us/library/ms130926.aspx |
||
|
|
