Home
Microsoft SQL Server
  - System tables
  - Procedure
    - Change Data Capture
    - Constraints
    - Files & folders
    - Fulltext (EFTS)
    - Index
    - Login & Users
    - OleDb
    - Oracle
    - Replication
    - Scripting
    - Server
    - Spatial geo
    - SQL Server Agent
    - Transaction
    - Trigger
    - XML
    - Uncategorized
  - Views
    - DMV
  - Functions
DigiMailing
Contact
The name of the object you are looking for
sp_approlepassword

This is a procedure in the mssqlsystemresource database.
create procedure sys.sp_approlepassword
	@rolename		sysname,			-- name of app role
	@newpwd			sysname				-- new password
AS
	declare @stmt		nvarchar(4000)

	-- CHECK FOR NULL PASSWORD
	if (@newpwd is null)
	begin
		raiserror(15034,-1,-1)
		return (1)
	end

	-- CHECK FOR NULL NAME
	if (@rolename is null)
	begin
		raiserror(15004,-1,-1)
		return (1)
	end

    -- DISALLOW USER TRANSACTION --
	set implicit_transactions off
	if (@@trancount > 0)
	begin
		raiserror(15002, -1, -1, 'sys.sp_approlepassword')
		return (1)
	end

	set @stmt = 'alter application role '
	set @stmt = @stmt + quotename(@rolename, ']')
	set @stmt = @stmt + ' with password = '
	set @stmt = @stmt + quotename(@newpwd, '''')
	
	BEGIN TRANSACTION

	exec (@stmt)	
	if @@error <> 0
	begin
		ROLLBACK TRANSACTION
		return (1)
	end

	COMMIT TRANSACTION

    -- RETURN SUCCESS --
	return (0) -- sp_approlepassword

Questions

Feel free to contact.
Email answer to
Question

Type this code
See also


Nieuws

Reporting Services item-level role definitions
Create all your missing indexes
Converting datetime field
Start MSSQL Server Profiler at time
Replicating MSSQL Server views
Exploring Microsoft Sharepoint
The OLE DB provider "SQLNCLI10" for linked server indicates.
Mobile solar charger
Oracle to SQL Server replication
Cannot insert the value NULL into column
Undocumented Microsoft SQL Server 2008
VMware
Zoekmachine optimalisatie
SQL Servers hidden objects
FckEditor
Flash in Ajax
De hype die AJAX heet
Barcode scannen
MySQL; Gratis, makkelijk en snel!
PHP
sIFR; de combinatie tussen HTML en Flash