I just upgraded to a Windows 7 box and installed MS SQL Server 2005 and am trying to open and connect to my local machine using Windows Authentication.

I keep getting 'Cannot connect to CHRISW7O980'. Do I have to start a server locally?

link|improve this question

62% accept rate
feedback

4 Answers

up vote 1 down vote accepted

Suggest using this fantastic ServerFault answer to a similar question to help troubleshoot connectivity issues to new instances of SQL Server. There are a few configuration points to check.

Some likely culprits:

  • W7 firewall allowing SQL Server traffic on 1433.
  • SQL Server services running?
  • SQL Server Configuration Manager not allowing TCP connections.

SQL Server Can't Connect

link|improve this answer
The SQL Server Configuration Manager says that SQL Server is Running and is set to Automatic. I'll check the firewall now – chris May 25 '11 at 18:55
nope its not the firewall, turned it off and still nothing. It appears that SQL SERVER (MSSQLSERVER) service is started and automatic – chris May 25 '11 at 19:15
feedback

Check in Sql Server Configuration Manager to ensure your instance of SQL Server is running. If not, you can start it and set the Start Mode to Automatic to automatically start it when windows reboots.

link|improve this answer
feedback

Maybe you are running SQLExpress? Try this for the instance name:

Try using .\SQLEXPRESS.

link|improve this answer
feedback

When you installed SQL Server on your local machine, did you install SQL EXPRESS? If so, you may have to use the instance name CHRISW7O980\SQLEXPRESS.

Also, remember that connections over TCP/IP are disabled for newly installed SQL servers. You'll have to enable that in the SQL server manager.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.