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

权限

只有 sysadmin 固定服务器角色成员才能执行 sp_changedistributor_password

请参阅

参考

sp_adddistributor (Transact-SQL)

复制存储过程 (Transact-SQL)

概念

查看和修改复制安全设置

保护分发服务器的安全