我可以用 smo 启动 sql server browser 服务吗?
我需要从 VB.Net 程序枚举 SQL Server。如果 SQL Browser 服务未打开,则此操作会失败。默认安装似乎已禁用它。
我如何测试服务状态,如果需要,启用它并启动它?
I need to enumerate SQL Servers from a VB.Net program. This fails if the SQL Browser service is not on. The default installation seems to have it disabled.
How can i test for the service status and if required, enable it and start it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不一定需要 SMO。您可以使用 ServiceController 类。这是启动未运行的服务的简单示例:
end module
You don't necessarily need SMO. You can use the ServiceController class. Here's a simple example of starting a service that is not running:
end module