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

This might be a basic question, but I tried googling it and couldn't find an answer.

I need to make a list of all the SQL Servers on a network. This is very easy to do using the .NET framework (System.Data.Sql.SqlDataSourceEnumerator), but is there also a relatively simple way to do this in java as well? While I was doing my research, I came across the possibility of listening in at different ports, but that seemed un-user friendly. Any ideas?

Thank you all so much.

share|improve this question
The default port is 1433, but it's anybody's guess for multiple instances on the same host. – OMG Ponies Feb 8 '10 at 17:28
@OMG Ponies osql.exe and SqlDataSourceEnumerator are aware of that though SqlDataSourceEnumerator shows only servers that boradcasting itself. – Sergey Mirvoda Feb 8 '10 at 17:37

1 Answer

up vote 1 down vote accepted

You can use

osql -L

and parse output.

share|improve this answer
I'm a newbie in sql. Can you give me some more information or a place to get more information? – chama Feb 8 '10 at 17:32
osql.exe is a command line tool. just search it on your hdd and execute with -L switch – Sergey Mirvoda Feb 8 '10 at 17:35
Here is the how to: databasejournal.com/features/mssql/article.php/3397981/… I don't think you can redistribute osql.exe however. – Cat Man Do Feb 8 '10 at 17:43
SQL Servers have to make themselves available for browsing by running the SQL Server Browser Service so it's not a lock that you will find them. msdn.microsoft.com/en-us/library/ms181087.aspx In addition, if a server is hidden by running in Shared Memory mode you won't be able to connect to it remotely. So your real question may be: how do I query the SQL Server Browser Service from Java? – Cat Man Do Feb 8 '10 at 17:51
so now that I know what my question is, how do I use sql server browser from java? – chama Feb 8 '10 at 18:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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