Skip to content

Latest commit

 

History

History
72 lines (51 loc) · 2.29 KB

File metadata and controls

72 lines (51 loc) · 2.29 KB
title sp_dropapprole (Transact-SQL)
description sp_dropapprole removes an application role from the current database.
author VanMSFT
ms.author vanto
ms.reviewer randolphwest
ms.date 06/23/2025
ms.service sql
ms.subservice system-objects
ms.topic reference
f1_keywords
sp_dropapprole_TSQL
sp_dropapprole
helpviewer_keywords
sp_dropapprole
dev_langs
TSQL

sp_dropapprole (Transact-SQL)

[!INCLUDE SQL Server]

Removes an application role from the current database.

Important

[!INCLUDE ssNoteDepFutureAvoid] Use DROP APPLICATION ROLE instead.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

sp_dropapprole [ @rolename = ] N'rolename'
[ ; ]

Arguments

[ @rolename = ] N'rolename'

The application role to remove. @rolename is sysname, with no default. @rolename must exist in the current database.

Return code values

0 (success) or 1 (failure).

Remarks

sp_dropapprole can only be used to remove application roles. If a role owns any securables, the role can't be dropped. Before dropping an application role that owns securables, you must first transfer ownership of the securables, or drop them.

sp_dropapprole can't be executed within a user-defined transaction.

Permissions

Requires ALTER ANY APPLICATION ROLE permission on the database.

Examples

The following example removes the SalesApp application role from the current database.

EXECUTE sp_dropapprole 'SalesApp';

Related content