2

Microsoft SQL Server Management Studio中,可以选择右键单击服务器以访问:服务器属性 - 安全

新的SQL Operations Studio中的等价物是什么?

谢谢。

4

1 回答 1

0

这并没有完全回答这个问题,但这里有。

在此处输入图像描述

服务器属性 -> 安全性是通过查询 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',可以找到你要找的东西。

此答案基于:Xp_instance_RegRead 和 xp_RegRead 之间的差异

于 2018-09-27T01:47:44.353 回答