sp_changedistributor_password (Transact-SQL)
Cambia la contraseña de un distribuidor. Este procedimiento almacenado se ejecuta en el distribuidor de cualquier base de datos.
Sintaxis
sp_changedistributor_password [ @password= ] 'password'
Argumentos
- [ @password=] 'password'
Es la nueva contraseña. password es de tipo sysname y no tiene ningún valor predeterminado. Si el distribuidor es local, se cambia la contraseña del inicio de sesión de sistema distributor_admin.
Valores de código de retorno
0 (correcto) o 1 (error)
Notas
Se utiliza sp_changedistributor_password en todos los tipos de replicación.
Ejemplo
-- 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
Permisos
Sólo los miembros de la función fija de servidor sysadmin pueden ejecutar sp_changedistributor_password.