473,466 Members | 2,016 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

How to find available SQL Server on local network

Using VB.NET how can I find all available SQL Server on a local network and
list all the databases in each server.

Thanks
Jul 21 '05 #1
6 8212
You can do this using SQL-DMO. Add a reference to sqldmo.dll and sqldmo.rll
to use SQL-DMO. The Application object of SQL-DMO has a ListAvailableServers
method which will give you all SQL Servers on the network (if you are running
Windows 2000 and up).

You can also connect to an SQL Server instance and enumerate all objects for
that server (using the SqlServer object).

Links:
http://support.microsoft.com/default...b;en-us;287737
http://msdn.microsoft.com/library/de...con03_8q44.asp

Of course, the code will be a bit different in VB.net.

HTH, Jakob.

"Job Lot" wrote:
Using VB.NET how can I find all available SQL Server on a local network and
list all the databases in each server.

Thanks

Jul 21 '05 #2
Doesn't it show instances installed on local machine?

"Jakob Christensen" wrote:
You can do this using SQL-DMO. Add a reference to sqldmo.dll and sqldmo.rll
to use SQL-DMO. The Application object of SQL-DMO has a ListAvailableServers
method which will give you all SQL Servers on the network (if you are running
Windows 2000 and up).

You can also connect to an SQL Server instance and enumerate all objects for
that server (using the SqlServer object).

Links:
http://support.microsoft.com/default...b;en-us;287737
http://msdn.microsoft.com/library/de...con03_8q44.asp

Of course, the code will be a bit different in VB.net.

HTH, Jakob.

"Job Lot" wrote:
Using VB.NET how can I find all available SQL Server on a local network and
list all the databases in each server.

Thanks

Jul 21 '05 #3
I am getting the following error when i run it on WIN2K

QueryInterface for interface SQLDMO.NameList failed???

"Jakob Christensen" wrote:
You can do this using SQL-DMO. Add a reference to sqldmo.dll and sqldmo.rll
to use SQL-DMO. The Application object of SQL-DMO has a ListAvailableServers
method which will give you all SQL Servers on the network (if you are running
Windows 2000 and up).

You can also connect to an SQL Server instance and enumerate all objects for
that server (using the SqlServer object).

Links:
http://support.microsoft.com/default...b;en-us;287737
http://msdn.microsoft.com/library/de...con03_8q44.asp

Of course, the code will be a bit different in VB.net.

HTH, Jakob.

"Job Lot" wrote:
Using VB.NET how can I find all available SQL Server on a local network and
list all the databases in each server.

Thanks

Jul 21 '05 #4
It seems that this may be a pre-SP2 problem. Did you install all SQL Server
service packs?

Regards, Jakob.
"Job Lot" wrote:
I am getting the following error when i run it on WIN2K

QueryInterface for interface SQLDMO.NameList failed???

"Jakob Christensen" wrote:
You can do this using SQL-DMO. Add a reference to sqldmo.dll and sqldmo.rll
to use SQL-DMO. The Application object of SQL-DMO has a ListAvailableServers
method which will give you all SQL Servers on the network (if you are running
Windows 2000 and up).

You can also connect to an SQL Server instance and enumerate all objects for
that server (using the SqlServer object).

Links:
http://support.microsoft.com/default...b;en-us;287737
http://msdn.microsoft.com/library/de...con03_8q44.asp

Of course, the code will be a bit different in VB.net.

HTH, Jakob.

"Job Lot" wrote:
Using VB.NET how can I find all available SQL Server on a local network and
list all the databases in each server.

Thanks

Jul 21 '05 #5
Installing SP3a fixed it. Thanks

Have another question
I have installed sql server on stand alone machine, running XP. The code
doesn't generate error but doesn't even shows the instance of sql server
installed on it, what could be the problem? Does the method
ListAvailableSQLServers() only scans the network for instances of sql server
and not the local machine?
"Jakob Christensen" wrote:
It seems that this may be a pre-SP2 problem. Did you install all SQL Server
service packs?

Regards, Jakob.
"Job Lot" wrote:
I am getting the following error when i run it on WIN2K

QueryInterface for interface SQLDMO.NameList failed???

"Jakob Christensen" wrote:
You can do this using SQL-DMO. Add a reference to sqldmo.dll and sqldmo.rll
to use SQL-DMO. The Application object of SQL-DMO has a ListAvailableServers
method which will give you all SQL Servers on the network (if you are running
Windows 2000 and up).

You can also connect to an SQL Server instance and enumerate all objects for
that server (using the SqlServer object).

Links:
http://support.microsoft.com/default...b;en-us;287737
http://msdn.microsoft.com/library/de...con03_8q44.asp

Of course, the code will be a bit different in VB.net.

HTH, Jakob.

"Job Lot" wrote:

> Using VB.NET how can I find all available SQL Server on a local network and
> list all the databases in each server.
>
> Thanks

Jul 21 '05 #6
It seems that the NameList returned by ListAvailableServers is 1-based,
although it does not fail if you use indices smaller than 1 (it just returns
an empty string). So if you use code similar to the following, you will get
a server name '(local)' for the local (default) SQL Server instance:

SQLDMO.Application app = new SQLDMO.ApplicationClass();
SQLDMO.NameList names = app.ListAvailableSQLServers();
for (int i = 1; i <= names.Count; ++i)
Console.WriteLine(names.Item(i));

HTH, Jakob.
"Job Lot" wrote:
Installing SP3a fixed it. Thanks

Have another question
I have installed sql server on stand alone machine, running XP. The code
doesn't generate error but doesn't even shows the instance of sql server
installed on it, what could be the problem? Does the method
ListAvailableSQLServers() only scans the network for instances of sql server
and not the local machine?
"Jakob Christensen" wrote:
It seems that this may be a pre-SP2 problem. Did you install all SQL Server
service packs?

Regards, Jakob.
"Job Lot" wrote:
I am getting the following error when i run it on WIN2K

QueryInterface for interface SQLDMO.NameList failed???

"Jakob Christensen" wrote:

> You can do this using SQL-DMO. Add a reference to sqldmo.dll and sqldmo.rll
> to use SQL-DMO. The Application object of SQL-DMO has a ListAvailableServers
> method which will give you all SQL Servers on the network (if you are running
> Windows 2000 and up).
>
> You can also connect to an SQL Server instance and enumerate all objects for
> that server (using the SqlServer object).
>
> Links:
> http://support.microsoft.com/default...b;en-us;287737
> http://msdn.microsoft.com/library/de...con03_8q44.asp
>
> Of course, the code will be a bit different in VB.net.
>
> HTH, Jakob.
>
>
>
> "Job Lot" wrote:
>
> > Using VB.NET how can I find all available SQL Server on a local network and
> > list all the databases in each server.
> >
> > Thanks

Jul 21 '05 #7

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

Similar topics

0
by: Job Lot | last post by:
Using VB.NET how can I find all available SQL Server on a local network and list all the databases in each server. Thanks
8
by: Job Lot | last post by:
Using VB.NET how can I find all available SQL Server on a local network and list all the databases in each server. Thanks
8
by: BJ | last post by:
Problem: How can I code up a client side process to detect if the network is available? Synopsis: I am writing ASP.NET input forms for a Panasonic Tuff book. The users will be walking around...
4
by: ianyian | last post by:
hi experts, im doing some staff bween th the aspx + MS Word.chellcheck, and and which running on my ypc is no problem ( windows xp , activation by ASPNET ), buts someshow when i try to deploy to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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,...
0
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...
0
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...
0
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,...
0
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...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.