sp_changedistributor_password (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 のメンバだけです。