从网络计算机访问 SQL Server 2005 Express Edition
如何从网络计算机中的应用程序访问 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在 2k3 机器上运行它,则需要安装 Sql Server 和 2003 服务器的所有更新。
启动 Sql Server 后检查事件日志。 它会很好地记录一切,告诉您它是否被阻止以及它在哪里侦听连接。
从远程计算机上,您可以使用 telnet 查看 SQL Server 是否正在侦听远程连接。 您只需要服务器的 IP 和端口(默认为 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:
If you get a blank screen, its listening. If you get thrown back to the command prompt, something is blocking you.
请参阅这篇知识库文章。 如何配置 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