vote up -1 vote down star

Can anyone tell me how to get remote Sqlserver instances using c# and SMO or any api?

I have a remote server name "RemoteMC", which has 2 instances of sql server: "RemoteMc" and "RemoteMC\sqlexpress"

I try to get the instances in code like this:

Server srv=new Server("RemoteMC");
DataTable dt=SmoApplication.EnumAvailableSqlServer(true);

But it returns "Host\sqlexpress"

I don't know what went wrong. How can I get the result back as:

RemoteMC
RemoteMC\sqlexpress;

?

flag

36% accept rate
4  
HOw is this different from stackoverflow.com/questions/1097010/… and the other five times you've asked the same question? – John Saunders Jul 8 at 13:03
Please read the comments in the question John linked for more help regarding your problem. – Eric Jul 8 at 13:06

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.