SQL Server 连接字符串: .对于数据源

发布于 2024-11-15 22:55:36 字数 182 浏览 3 评论 0原文

因此,我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

与往事干杯 2024-11-22 22:55:36

. = (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 using localhost, except that localhost 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.

琉璃繁缕 2024-11-22 22:55:36

数据源是具有默认实例的服务器名称,

您在其中放置的内容取决于该服务器是作为您正在使用的 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.

  • If remote, use the actual server name
  • If local, you can use (local) or localhost
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文