12

We are having some connectivity issues from a client application connecting to a remote SQL Server 2005 (named instance).

What are some ways to test connectivity from the client machine (Windows XP) that doesn't have SSMS or Query analyzer installed?

I would like to see if the issue is related to the specific application or is it a more general connectivity to the remote sql server from the specific client.

4 Answers 4

13

If you just want to test network connectivity, then telnet is a simple way.

telnet ip.of.sql.server 1433

Here's more in-depth information on troubleshooting connectivity issues (including using telnet)

http://support.microsoft.com/kb/827422

Sign up to request clarification or add additional context in comments.

1 Comment

Does the telnet require username and password?
11

Can you create an ODBC connection via admin tools to the SQL Server and use the "Test Connection" function in there?

1 Comment

I'll point out that this is the only way I've found if you don't have SQL on the machine, and your sql instance has a name. Aka, ping and telnet won't always help if your instance has a name like "server-name\sql-instance-name" because while the machine may be up, the instance may not be.
7

I sometimes use the Data sources/ODBC control panel item as a "GUI" to test a DB connection.

Comments

3

On windows you can create empty test.udl file and open it. Connection wizard should appear. It allows you to create a connection to sql server and other databases.

See this post for more details: Test remote SQL connectivity EASILY!

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.