Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
SqlDataSourceEnumerator.Instance.GetDataSources() does not locate local SQL server 2008 instance

In SQL Server 2008, when I open the Microsoft SQL Server Management Studio, I have to connect to a server.

First I select Server Type (like Database Engine), then server names are available.

Generally, there are server name's used recently. But if I go for <Browse For More...> I get a window with two tabs

  1. Local Servers
  2. Network Servers.

When I select Network Servers, there is a list of available servers on the network.

Now I want to know how can I do this myself in C# ? I just need to know, how can I get the list of network servers in my C# app?

share|improve this question

marked as duplicate by Simon Mourier, Bridge, Adriano, 一二三, SiB Dec 4 '12 at 10:24

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 3 down vote accepted

Try with:

DataTable dt = System.Data.Sql.SqlDataSourceEnumerator.Instance.GetDataSources();

You will get DataTable with servernames and instancenames.

share|improve this answer
Thanks. I got my job done. – decoyer Dec 4 '12 at 8:26

I found this Link helpful, After Dejo give me the hint how to do this. This Link can be helpful for everyone. Atleast it helped me.

SQL data source enumerator instance get data sources does not locate local SQL Server

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.