SQL Server 2000远程连接
您好,我想知道如何在 sql server 2000 中启用远程服务器连接。我在 Windows Server 2003 操作系统的系统中安装了 sql server 2000。 我想通过远程创建到数据库的 dsn 连接。 我已经在它正在工作的服务器本地创建了一个 dsn。 但如何从远程系统创建 dsn 并使其工作。
Hi i want to know how to enable remote server connection in sql server 2000. I have sql server 2000 installed in a system with windows server 2003 os. i want to create a dsn connection to the database through remote. I have created a dsn locally in the server it is working. but how to create dsn from the remote system and make it work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要允许远程连接到服务器,请执行以下操作:
在 SQL Server 企业管理器中,右键单击服务器并选择属性。
在常规选项卡上,单击网络配置按钮并在新窗口中启用命名管道和TCP/IP窗户。 我不确定执行此操作后是否需要重新启动 SQL Server。
完成此操作后,您应该能够通过引用例如 MYSERVER\MyInstanceName 从远程计算机连接到 SQL Server。
To allow remote connections to the server, do the following:
In SQL Server Enterprise Manager, right-click the server and choose Properties.
On the General tab, click the Network Configuration button and enable Named Pipes, and TCP/IP in the new window. I'm not sure if you need to restart SQL Server after doing this.
After doing this, you should be able to connect to the SQL Server from a remote computer, by referring to e.g. MYSERVER\MyInstanceName.
它帮助了我。
顺便说一句,我还将 sqlservr.exe 添加到我的防火墙例外列表中:
http://support.microsoft.com/kb/841251
It helped me.
BTW I've also added sqlservr.exe to my firewall exception list:
http://support.microsoft.com/kb/841251
尝试在远程系统上安装 MSDE/连接工具。
Try installing MSDE/connectivity tools on remote system.