Why can I not connect to SQL on my computer? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T12:27:44Zhttp://stackoverflow.com/feeds/question/932711http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/932711/why-can-i-not-connect-to-sql-on-my-computer0Why can I not connect to SQL on my computer?Geoffrey van Wyk2009-05-31T19:49:07Z2009-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&EvtSrc=MSSQLServer&EvtID=2&LinkId=20476" rel="nofollow">http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=2&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#9327201Answer by Alex for Why can I not connect to SQL on my computer?Alex2009-05-31T19:51:53Z2009-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#9327240Answer by Andomar for Why can I not connect to SQL on my computer?Andomar2009-05-31T19:53:01Z2009-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>