--- title: "sp_dropapprole (Transact-SQL) | Microsoft Docs" ms.custom: "" ms.date: "03/14/2017" ms.prod: sql ms.prod_service: "database-engine" ms.reviewer: "" ms.technology: system-objects ms.topic: "language-reference" f1_keywords: - "sp_dropapprole_TSQL" - "sp_dropapprole" dev_langs: - "TSQL" helpviewer_keywords: - "sp_dropapprole" ms.assetid: ea1aefe6-8f7d-46e9-a3cb-7b037b393e73 ms.author: vanto author: VanMSFT --- # sp_dropapprole (Transact-SQL) [!INCLUDE[tsql-appliesto-ss2008-xxxx-xxxx-xxx-md](../../includes/tsql-appliesto-ss2008-xxxx-xxxx-xxx-md.md)] Removes an application role from the current database. > [!IMPORTANT] > [!INCLUDE[ssNoteDepFutureAvoid](../../includes/ssnotedepfutureavoid-md.md)] Use [DROP APPLICATION ROLE](../../t-sql/statements/drop-application-role-transact-sql.md) instead. ![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md) ## Syntax ``` sp_dropapprole [@rolename = ] 'role' ``` ## Arguments `[ @rolename = ] 'role'` Is the application role to remove. *role* is a **sysname**, with no default. *role* 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 cannot be dropped. Before dropping an application role that owns securables, you must first transfer ownership of the securables, or drop them. **sp_dropapprole** cannot 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. ```sql EXEC sp_dropapprole 'SalesApp'; ``` ## See Also [Security Stored Procedures (Transact-SQL)](../../relational-databases/system-stored-procedures/security-stored-procedures-transact-sql.md) [sp_addapprole (Transact-SQL)](../../relational-databases/system-stored-procedures/sp-addapprole-transact-sql.md) [DROP APPLICATION ROLE (Transact-SQL)](../../t-sql/statements/drop-application-role-transact-sql.md) [sp_changeobjectowner (Transact-SQL)](../../relational-databases/system-stored-procedures/sp-changeobjectowner-transact-sql.md) [sp_setapprole (Transact-SQL)](../../relational-databases/system-stored-procedures/sp-setapprole-transact-sql.md) [System Stored Procedures (Transact-SQL)](../../relational-databases/system-stored-procedures/system-stored-procedures-transact-sql.md)