Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have tried to connect to SQL Server 2000 through TCP/IP.

I followed these steps and enabled SQL Server 2000 on port 1433.

Then I used the command to test whether the port is opened up:

telnet localhost 1433

But I found the following error:

Connecting To localhost...Could not open connection to the host, on port 1433: 
Connect failed

And I also failed to connect to the server by following these steps.

How to solve this problem and connect to Sql Server 2000 through TCP/IP?

See my configs

alt text alt text

share|improve this question
i am also getting the same error. Please tell how you solved it. – Syed Muhammad Mubashir Nov 17 '12 at 4:32

5 Answers

By default TCP-IP is disabled. You need run SQL Server Configuration Manager->SQL Server Network Configuration and enable the protocol, then restart SQL Server service

share|improve this answer
I have restarted my PC and the SQL Server. But it didn't work. – BROY Jan 14 '10 at 8:09
Sorry, have you enable TCP-IP in Configuration Manager? Try do disable other protocols, leave only TCP-IP. So if you will be able to connect it has to be TCP-IP – burnall Jan 14 '10 at 8:30

Try disable your firewall temporarily and see if it makes a difference, to isolate the problem.

EDIT: Wait, did you enable TCP/IP on the client or server ? If you only enabled it on the client, then that explains it.

It must be enabled on both to allow communication. From your error, it looks like the server does not accept TCP connections. I don't remember what SQL 2000 calls the program, but find something like "SQL Server Network Configuration", not "Client Configuration". And turn on TCP there.

Perhaps show us a screenshot of your network configuration dialog.

share|improve this answer
Tried it. Didn't work. – BROY Jan 14 '10 at 9:13
I have enabled TCP in both client and server through Client Network Util and Server network Util respectively. – BROY Jan 14 '10 at 9:56

I think you need to be running SQL Server Agent to connect via TCP/IP on 2000.

share|improve this answer
Tried it. Failed again. – BROY Jan 14 '10 at 9:18

This behavior is by design: http://support.microsoft.com/kb/929152

Use an alternative representation of the name of the local host address instead of "localhost". Possible alternative representations include the following:

  • 127.0.0.1
  • "."
  • The actual local host name
share|improve this answer

I did following actions to remove this bug

1)Disable Other Protocols other than TCP/IP from SQL Server Client And Server Utilities

2)Re-Instal SQL Server 2000 sp4

share|improve this answer

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.