Why can I not connect to SQL on my computer? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T12:27:44Z http://stackoverflow.com/feeds/question/932711 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/932711/why-can-i-not-connect-to-sql-on-my-computer 0 Why can I not connect to SQL on my computer? Geoffrey van Wyk 2009-05-31T19:49:07Z 2009-05-31T20:19:41Z <p>I am using SQL Server 2008 express edition. I have connected before. Now I get this error message:</p> <blockquote> <h2>TITLE: Connect to Server</h2> <p>Cannot connect to GEF65439\SQLEXPRESS.</p> <p>------------------------------ ADDITIONAL INFORMATION:</p> <p>A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 2)</p> <p>For help, click: <a href="http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&amp;EvtSrc=MSSQLServer&amp;EvtID=2&amp;LinkId=20476" rel="nofollow">http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&amp;EvtSrc=MSSQLServer&amp;EvtID=2&amp;LinkId=20476</a></p> <p>------------------------------ BUTTONS:</p> <h2>OK</h2> </blockquote> http://stackoverflow.com/questions/932711/why-can-i-not-connect-to-sql-on-my-computer/932720#932720 1 Answer by Alex for Why can I not connect to SQL on my computer? Alex 2009-05-31T19:51:53Z 2009-05-31T19:51:53Z <p>Take a look at Administrative Tools\Services and restart your process <strong>SQL Server (SQLEXPRESS)</strong>.</p> http://stackoverflow.com/questions/932711/why-can-i-not-connect-to-sql-on-my-computer/932724#932724 0 Answer by Andomar for Why can I not connect to SQL on my computer? Andomar 2009-05-31T19:53:01Z 2009-05-31T19:53:01Z <p>Check if the Sql Server service is started in Administrative Tools -> Services.</p> <p>What happens when you telnet to the Sql Server port, by default 1433?</p> <pre><code>telnet localhost 1433 </code></pre>