Skip to content

Latest commit

 

History

History
61 lines (43 loc) · 2.22 KB

File metadata and controls

61 lines (43 loc) · 2.22 KB
title sp_changedistributor_password (Transact-SQL)
description sp_changedistributor_password changes the password for a Distributor.
author markingmyname
ms.author maghan
ms.reviewer randolphwest
ms.date 06/23/2025
ms.service sql
ms.subservice replication
ms.topic reference
f1_keywords
sp_changedistributor_password
sp_changedistributor_password_TSQL
helpviewer_keywords
sp_changedistributor_password
dev_langs
TSQL

sp_changedistributor_password (Transact-SQL)

[!INCLUDE SQL Server SQL MI]

Changes the password for a Distributor. This stored procedure is executed at the Distributor on any database. If this is a remote Distributor, then it needs to be run on all the Publisher servers that are using this Distributor. If the distribution or Publisher database is in an availability group, then it needs to be run on all the Distributor and Publisher nodes. It doesn't matter if the node is primary or secondary.

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

Syntax

sp_changedistributor_password [ @password = ] N'password'
[ ; ]

Arguments

[ @password = ] N'password'

The new password. @password is sysname, with no default. If the Distributor is local, the password of the distributor_admin system login is changed.

Return code values

0 (success) or 1 (failure).

Remarks

sp_changedistributor_password is used in all types of replication.

Examples

:::code language="sql" source="../replication/codesnippet/tsql/sp-changedistributor-pas_1.sql":::

Permissions

Only members of the sysadmin fixed server role can execute sp_changedistributor_password.

Related content