--- title: "sp_approlepassword (Transact-SQL) | Microsoft Docs" ms.custom: "" ms.date: "03/14/2017" ms.prod: "sql-non-specified" ms.reviewer: "" ms.suite: "" ms.technology: - "database-engine" ms.tgt_pltfrm: "" ms.topic: "language-reference" f1_keywords: - "sp_approlepassword" - "sp_approlepassword_TSQL" dev_langs: - "TSQL" helpviewer_keywords: - "sp_approlepassword" ms.assetid: 7967dc0b-bee2-4c63-b8e9-1c3ce2f5db2a caps.latest.revision: 26 author: "BYHAM" ms.author: "rickbyh" manager: "jhubbard" --- # sp_approlepassword (Transact-SQL) [!INCLUDE[tsql-appliesto-ss2008-xxxx-xxxx-xxx_md](../../includes/tsql-appliesto-ss2008-xxxx-xxxx-xxx-md.md)] Changes the password of an application role in the current database. > [!IMPORTANT] > [!INCLUDE[ssNoteDepFutureAvoid](../../includes/ssnotedepfutureavoid-md.md)] Use [ALTER APPLICATION ROLE](../../t-sql/statements/alter-application-role-transact-sql.md) instead. || |-| |**Applies to**: [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] ([!INCLUDE[ssKatmai](../../includes/sskatmai-md.md)] through [current version](http://go.microsoft.com/fwlink/p/?LinkId=299658)).| ![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_approlepassword [ @rolename= ] 'role' , [ @newpwd = ] 'password' ``` ## Arguments [ **@rolename =** ] **'***role***'** Is the name of the application role. *Role* is **sysname**, with no default. *role* must exist in the current database. [ **@newpwd =** ] **'***password***'** Is the new password for the application role. *password* is **sysname**, with no default. *password* cannot be NULL. > [!IMPORTANT] > Do not use a NULL password. Use a strong password. For more information, see [Strong Passwords](../../relational-databases/security/strong-passwords.md). ## Return Code Values 0 (success) or 1 (failure) ## Remarks **sp_approlepassword** cannot be executed within a user-defined transaction. ## Permissions Requires ALTER ANY APPLICATION ROLE permission on the database. ## Examples The following example sets the password for the `PayrollAppRole` application role to `B3r12-36`. ``` EXEC sp_approlepassword 'PayrollAppRole', '''B3r12-36'; ``` ## See Also [Security Stored Procedures (Transact-SQL)](../../relational-databases/system-stored-procedures/security-stored-procedures-transact-sql.md) [Application Roles](../../relational-databases/security/authentication-access/application-roles.md) [sp_addapprole (Transact-SQL)](../../relational-databases/system-stored-procedures/sp-addapprole-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)