Allow remote connections to SQL ServerThe first thing you want to check is if
Remote Connections are enabled on your SQL Server database. In SQL Server 2008 you do this by opening SQL Management Studio, connect to the server in question, right click the server…
… and open the Server
Properties.

Navigate to
Connections and ensure that
Allow remote connections to this server is checked. Check if this solves the problem. If it does, here you go, continue with whatever you were doing and have a nice day.
Protocols for MSSQLServer If you’re still running in issues let’s dig a bit deeper. The next good thing to check is the
SQL Server Network Configuration. Open the
SQL Server Configuration Manager, unfold the node
SQL Server Network Configuration and select
Protocols for MSSQLServer (or whatever the name of your SQL Server instance is).
Make sure that TCP/IP is enabled and try again. Even though I hope that this resolved your problems there might still be an issue with…
The FirewallIf there is still no communication happening between your computer and the remote SQL Server you most likely need to configure your firewall settings. A good first step is to figure out which port is being used by TCP/IP (and which you need to open in your firewall). You can do this by right clicking TCP/IP and selecting
Properties.
Click on the tab
IP Addresses and voilà – Port 1433 it is :-) That was easy enough and all there is left to do is to allow inbound TCP/IP traffic on Port 1433 in your firewall. In Windows 7 this works something like this. Open the
Control Panel and navigate to
Windows Firewall.
Click on
Advanced Settings on the left hand side and you should see the
Windows Firewall with Advanced Security. Select the
Inboud Rules on the left hand side and click on
New Rule… on the right hand side.
This opens the
New Inbound Rule Wizard which you can use to allow
inbound traffic on
Port 1433 for
TCP/IP (and which is exactly how you configured your SQL Server in the steps above). Just follow the steps outlined below and you should be good :-)


That’s it, success! From here you should be able to access your SQL Server remotely.
Source of article:
http://blogs.msdn.com/b/walzenbach/archive/2010/04/14/how-to-enable-remote-connections-in-sql-server-2008.aspx