sp_helpntgroup (Transact-SQL)
適用於:SQL Server
報告目前資料庫中具有帳戶的 Windows 群組相關信息。
語法
sp_helpntgroup [ [ @ntname = ] N'ntname' ]
[ ; ]
引數
[ @ntname = ] N'ntname'
Windows 群組的名稱。 @ntname為 sysname,預設值為 NULL
。 @ntname必須是具有目前數據庫存取權的有效 Windows 群組。 如果未 指定@ntname ,則具有目前數據庫存取權的所有 Windows 群組都會包含在輸出中。
傳回碼值
0
(成功) 或 1
(失敗)。
結果集
資料行名稱 | 資料類型 | 描述 |
---|---|---|
NTGroupName |
sysname | Windows 群組的名稱。 |
NTGroupId |
smallint | 群組標識碼(標識符)。 |
SID |
varbinary(85) | 的安全性識別碼 (SID) NTGroupName 。 |
HasDbAccess |
int | 1 = Windows 群組具有存取資料庫的許可權。 |
備註
若要檢視目前資料庫中的 SQL Server 角色清單, 請使用 sp_helprole
。
權限
需要 public 角色的成員資格。
範例
下列範例會列印具有目前數據庫存取權的 Windows 群組清單。
EXEC sp_helpntgroup;