Cannot register default instance MSSQLSERVER in SQL Server 2008

后端 未结 2 490
独厮守ぢ
独厮守ぢ 2021-01-04 00:48

I have installed SQL Server 2008 Developer on Windows 7 (64 bit). In SQL Management Studio I cannot register the default instance MSSQLSERVER. It cannot find it although the

相关标签:
2条回答
  • 2021-01-04 01:08

    Check if the server allows remote connections on TCP/IP port 1433.

    this can be checked by SQL Server 2008 configuration manager.

    Go to network configuration and check if tcp/ip is enabled. If not enable this one.

    0 讨论(0)
  • 2021-01-04 01:13

    I always connected as:

    [machine_name]/[instance_name]

    and it wasn't able to connect. What works is connecting simply as:

    [machine_name]

    This is probably due to the fact that I am running a DEFAULT instance.

    0 讨论(0)
提交回复
热议问题