sp_changedistributor_password (Transact-SQL)

更改分发服务器的密码。此存储过程在分发服务器上针对任意数据库执行。

主题链接图标Transact-SQL 语法约定

语法

sp_changedistributor_password [ @password= ] 'password' 

参数

  • [ @password =] 'password'
    新密码。password 的数据类型为 sysname,没有默认值。如果分发服务器是本地服务器,则更改 distributor_admin 系统登录名的密码。

返回代码值

0(成功)或 1(失败)

备注

sp_changedistributor_password 用于所有类型的复制。

权限

只有 sysadmin 固定服务器角色成员才能执行 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_adddistributor (Transact-SQL)
复制存储过程 (Transact-SQL)

其他资源

How to: View and Modify Replication Security Settings (Replication Transact-SQL Programming)
保护分发服务器的安全

帮助和信息

获取 SQL Server 2005 帮助