Skip to content

Latest commit

 

History

History
86 lines (67 loc) · 3.42 KB

File metadata and controls

86 lines (67 loc) · 3.42 KB
title sp_srvrolepermission (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/20/2017
ms.prod sql
ms.prod_service database-engine
ms.reviewer
ms.technology system-objects
ms.topic language-reference
f1_keywords
sp_srvrolepermission_TSQL
sp_srvrolepermission
dev_langs
TSQL
helpviewer_keywords
sp_srvrolepermission
ms.assetid 5709667f-e3e4-48a2-93ec-af5e22a2ac58
author VanMSFT
ms.author vanto

sp_srvrolepermission (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]

Displays the permissions of a fixed server role.

Important

[!INCLUDEssNoteDepFutureAvoid]

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
sp_srvrolepermission [ [ @srvrolename = ] 'role']  

Arguments

[ @srvrolename = ] 'role' Is the name of the fixed server role for which permissions are returned. role is sysname, with a default of NULL. If no role is specified, the permissions for all fixed server roles are returned. role can have one of the following values.

Value Description
sysadmin System administrators
securityadmin Security administrators
serveradmin Server administrators
setupadmin Setup administrators
processadmin Process administrators
diskadmin Disk administrators
dbcreator Database creators
bulkadmin Can execute BULK INSERT statements

Return Code Values

0 (success) or 1 (failure)

Result Sets

Column name Data type Description
ServerRole sysname Name of a fixed server role
Permission sysname Permission associated with ServerRole

Remarks

The permissions listed include the [!INCLUDEtsql] statements that can be executed, and other special activities that can be performed by members of the fixed server role. To display a list of the fixed server roles, execute sp_helpsrvrole.

The sysadmin fixed server role has the permissions of all the other fixed server roles.

Permissions

Requires membership in the public role.

Examples

The following query returns the permissions associated with the sysadmin fixed server role.

EXEC sp_srvrolepermission 'sysadmin';  
GO  

See Also

Security Stored Procedures (Transact-SQL)
sp_addsrvrolemember (Transact-SQL)
sp_dropsrvrolemember (Transact-SQL)
sp_helpsrvrole (Transact-SQL)
System Stored Procedures (Transact-SQL)