Backups fail if Builtin\Administrators group is removed
scaldwell
Posts: 6
We remove the builtin\Administrators group from all our MSSQL servers. When I installed SQL Backup 4 all my jobs were failing. I added this group back and the jobs run. Why don't the jobs run under the authenticated user?
Thanks,
Scott
Thanks,
Scott
Comments
The SQL Backup Agent service will log on to SQL Server using the credentials of the specified service startup user (Windows authentication). If you need the Agent to log on using SQL Authentication, do the following:
- register the sqbsetlogin extended stored procedure - call sqbsetlogin, passing in a user name and password
sqbsetlogin 'sa', '<password>'
- remove sqbsetlogin
If you want to revert to Windows authentication, call sqbsetlogin with blank values i.e.
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
A severe error occurred on the current command. The results, if any, should be discarded.
I tried
EXEC sqbsetlogin '',''
and
sqbsetlogin '',''
I got the error both times. Any ideas?
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8