How do you make a SQL Server Authentication password change take effect in SQL Backup Agent service

jlrayjlray Posts: 6 New member
We use a SQL Server Authentication Login account for the SQL Backup Agent service to access a database instance.  Recently we change the password for this account.  I then executed the extended stored procedures below against master and restarted the service.   It appears that the password is not being updated in the service as running any back up job will fail with an authentication error.   I use the same account for the server within the GUI to connect to and it does connect to the database instance without issue.    So far the only way I've been able to get around this problem is to uninstall/reinstall the SQL Backup components and then supply the correct password to the service when going through the install process.  I'm thinking it shouldn't be this hard to make a password change.  Am i missing something here?  Thanks, Jerry

EXECUTE master..sp_addextendedproc sqbsetlogin, 'xp_sqlbackup.dll'
EXECUTE master..sqbsetlogin '<login goes here>', '<pwd goes here>'
EXECUTE master..sp_dropextendedproc sqbsetlogin
Tagged:

Best Answer

  • petey2petey2 Posts: 87 Silver 3
    Try either of these:

    EXEC master..sqbsetlogin 0, '<user name>', '<password>'

    or 

    EXEC master..sqbutility 9999, '<user name>', '<password>'

    Will get the documentation corrected for the sqbsetlogin command.
    SQL Backup - beyond compression

Answers

Sign In or Register to comment.