sql-server – 使用SMO重新启动SQL Server实例

前端之家收集整理的这篇文章主要介绍了sql-server – 使用SMO重新启动SQL Server实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的C#应用​​程序使用SMO对用户选择的sql Server实例进行各种操作.特别是,它改变了认证模式:
ServerConnection conn = new ServerConnection(connection);
Server server = new Server(conn);

server.Settings.LoginMode = ServerLoginMode.Mixed;

更改登录后,应重新启动更多实例.但是,我在SMO中找不到任何方式来重启所选实例.

我试图谷歌这个,但只发现了一堆枚举正在运行的服务并将其名称sql服务器服务名称进行比较的示例.我不喜欢这种方式,因为它容易出错并且依赖于Microsoft当前命名sql服务器实例的方式.

有没有办法在SMO中重新启动所选实例?

解决方法

添加对System.ServiceProcess的引用.
using System.ServiceProcess;

public static void RestartService(string sqlInstanceName) {
    if (string.IsNullOrEmpty(sqlInstanceName)) {
        throw new ArgumentNullException("sqlInstanceName");
    }

    const string DefaultInstanceName = "MSsqlSERVER";
    const string ServicePrefix = "MSsql$";
    const string InstanceNameSeparator = "\\";

    string serviceName = string.Empty;
    string server = sqlInstanceName;
    string instance = DefaultInstanceName;

    if (server.Contains(InstanceNameSeparator)) {
       int pos = server.IndexOf(InstanceNameSeparator);
       server = server.Substring(0,pos);
       instance = sqlInstanceName.Substring(pos + 1);
    }

    serviceName = ServicePrefix + instance;
    ServiceController sc = new ServiceController(serviceName,server);
    sc.Stop();
    sc.WaitForStatus(ServiceControllerStatus.Stopped,TimeSpan.FromSeconds(30));
    sc.Start();
    sc.WaitForStatus(ServiceControllerStatus.Running,TimeSpan.FromSeconds(30));
}
原文链接:https://www.f2er.com/mssql/76756.html

猜你在找的MsSQL相关文章