次の方法で共有


sp_changedistributor_password (Transact-SQL)

ディストリビューターのパスワードを変更します。 このストアド プロシージャは、ディストリビューター側で任意のデータベースに対して実行できます。

トピック リンク アイコン Transact-SQL 構文表記規則

構文

sp_changedistributor_password [ @password= ] 'password' 

引数

  • [ @password=] 'password'
    新しいパスワードです。 password のデータ型は sysname で、既定値はありません。 ディストリビューターがローカルの場合は、distributor_admin システム ログインのパスワードが変更されます。

戻り値

成功した場合は 0 を、失敗した場合は 1 をそれぞれ返します。

説明

sp_changedistributor_password は、すべての種類のレプリケーションで使用します。

使用例

-- Change the password on the Distributor. 
-- To avoid storing the password in the script file, the value is passed 
-- into SQLCMD as a scripting variable. For information about how to use 
-- scripting variables on the command line and in SQL Server Management
-- Studio, see the "Executing Replication Scripts" section in the topic
-- "Programming Replication Using System Stored Procedures".
USE master
EXEC sp_changedistributor_password $(Password)
GO

権限

sp_changedistributor_password を実行できるのは、固定サーバー ロール sysadmin のメンバーだけです。

関連項目

参照

sp_adddistributor (Transact-SQL)

レプリケーション ストアド プロシージャ (Transact-SQL)

概念

レプリケーションのセキュリティ設定の表示および変更

ディストリビューターのセキュリティ保護