在Microsoft SQL Server Management Studio中,可以选择右键单击服务器以访问:服务器属性 - 安全
新的SQL Operations Studio中的等价物是什么?
谢谢。
在Microsoft SQL Server Management Studio中,可以选择右键单击服务器以访问:服务器属性 - 安全
新的SQL Operations Studio中的等价物是什么?
谢谢。
这并没有完全回答这个问题,但这里有。
服务器属性 -> 安全性是通过查询 Windows 注册表生成的。没有简单的方法可以将其从系统中查询出来。
您可以使用
exec master.dbo.xp_regread
N'HKEY_LOCAL_MACHINE',
N'Software\Microsoft\MSSQLServer\Setup',
N'SQLPath',
@dir output
select @dir
exec master.dbo.xp_instance_regread
N'HKEY_LOCAL_MACHINE',
N'Software\Microsoft\MSSQLServer\Setup',
N'SQLPath',
@dir output
select @dir
问题是,你必须知道在哪里N'HKEY_LOCAL_MACHINE',
可以找到你要找的东西。