Skip to content

Latest commit

 

History

History
79 lines (61 loc) · 3.07 KB

File metadata and controls

79 lines (61 loc) · 3.07 KB
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)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx_md]

Changes the password of an application role in the current database.

Important

[!INCLUDEssNoteDepFutureAvoid] Use ALTER APPLICATION ROLE instead.

Applies to: [!INCLUDEssNoVersion] ([!INCLUDEssKatmai] through current version).

Topic link icon Transact-SQL Syntax Conventions

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.

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)
Application Roles
sp_addapprole (Transact-SQL)
sp_setapprole (Transact-SQL)
System Stored Procedures (Transact-SQL)