SQL Express 远程访问

发布于 2024-07-14 15:13:52 字数 95 浏览 5 评论 0原文

是否有任何方法可以在配置允许远程访问时以静默方式安装 SQL Express 2005,或者必须使用 SQL Server Management Studio UI 完成配置?

Is there any way to install SQL Express 2005 silently while configuring to allow remote access, or must the configuration be done with the SQL Server Management Studio UI?

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

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

发布评论

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

评论(2

不甘平庸 2024-07-21 15:13:52

安装 SQL 服务后,登录数据库并运行以下命令,然后重新启动 SQL 服务。

exec sp_configure 'remote access', 1
reconfigure

这将允许远程访问该服务。 如果您要安装命名实例,则需要确保 SQL Browser 服务正在运行并设置为自动。

After the SQL Service is installed log into the database and run the following and then restart the SQL Service.

exec sp_configure 'remote access', 1
reconfigure

This will allow remote access to the service. If you are installing a named instance you'll need to ensure that the SQL Browser service is running and set to automatic.

孤城病女 2024-07-21 15:13:52

问题之一是将 BROWSERSVCSTARTUP 设置为自动。 检查 BOL,以防我输入的标志不正确。 我将不得不仔细考虑一下,并确定这是否是唯一的问题。

One of the issues is setting BROWSERSVCSTARTUP to automatic. Check BOL, in case I have the flag typed in incorrectly. I will have to mull over this a bit and determine if this is the only issue in the mix.

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