从网络计算机访问 SQL Server 2005 Express Edition

发布于 2024-07-04 18:48:39 字数 118 浏览 8 评论 0原文

如何从网络计算机中的应用程序访问 SQL Server 2005 Express Edition?

我需要的访问来自应用程序(Linq-to-SQL 和 ODBC)和 Management Studio

How do you access a SQL Server 2005 Express Edition from a application in a network computer?

The access I need is both from application (Linq-to-SQL and ODBC) and from Management Studio

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

各自安好 2024-07-11 18:48:39

如果您在 2k3 机器上运行它,则需要安装 Sql Server 和 2003 服务器的所有更新。

启动 Sql Server 后检查事件日志。 它会很好地记录一切,告诉您它是否被阻止以及它在哪里侦听连接。

从远程计算机上,您可以使用 telnet 查看 SQL Server 是否正在侦听远程连接。 您只需要服务器的 IP 和端口(默认为 1433)。 从命令行:

telnet 192.168.10.10 1433

如果出现空白屏幕,则表示正在监听。 如果您被返回到命令提示符,则说明有东西阻止了您。

If you're running it on a 2k3 box, you need to install all updates for Sql Server and the 2003 server.

Check the event logs after you start the Sql Server. It logs everything well, telling you if its being blocked, and where it is listening for connections.

From a remote machine, you can use telnet to see if a sql server is listening for remote connections. You just need the IP and the port of the server (default is 1433). From the command line:

telnet 192.168.10.10 1433

If you get a blank screen, its listening. If you get thrown back to the command prompt, something is blocking you.

心欲静而疯不止 2024-07-11 18:48:39

请参阅这篇知识库文章。 如何配置 SQL Server 2005 以允许远程连接
哦,记住 SQLServer 名称可能是 MyMachineName\SQLExpress

See this KB Article. How to configure SQL Server 2005 to allow remote connections.
Oh, and remember that the SQLServer name will probably be MyMachineName\SQLExpress

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