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?
|
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?
| |||
|
feedback
|
|
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:
| |||||
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. | ||||
|
feedback
|
|
Maybe you are running SQLExpress? Try this for the instance name: Try using | |||
|
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. | |||
|
feedback
|