SQL Server 连接字符串: .对于数据源
因此,我正在使用 SQL Server 2008 连接字符串:
Data Source=.;Integrated Security=True;Pooling=False
.
数据源是什么?如何使用 SSMS 连接到 .
数据源?
So I'm working with a SQL Server 2008 connection string:
Data Source=.;Integrated Security=True;Pooling=False
What is the .
Data Source? How can I connect to the .
Data source using SSMS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.
=(local)
= 无论发起连接的计算机的名称。它与使用localhost
类似,只不过localhost
强制建立 TCP 连接,而.
或 < code>(local) 可以使用共享内存连接提供程序。您可以类似地在 SSMS 连接对话框中输入
.
或(local)
作为服务器名称,以连接到本地默认实例。.
=(local)
= whatever the name of the machine is from which the connection is being initiated. It is similar to usinglocalhost
, except thatlocalhost
forces a TCP connection to be established, whereas.
or(local)
can use the shared memory connection provider.You can similarly put
.
or(local)
as the server name in the SSMS connection dialog, to connect to the local default instance.数据源是具有默认实例的服务器名称,
您在其中放置的内容取决于该服务器是作为您正在使用的 SSMS 位于机器上还是远程。
(local)
或localhost
Data Source is the servername with a default instance
What you put there depends on whether this server is on the box as the SSMS you're using, or remote.
(local)
orlocalhost