Accessing backup information for none DBO's
Surinder
Posts: 44 Bronze 2
Hi..
We have a group of operators who are not DBA's but need to be able to see the log history of the backups.
At the moment i have given them DBO acess to the MASTER and MSDB databases.
Can i add them to any of the other groups instead of DBO?
regards,
We have a group of operators who are not DBA's but need to be able to see the log history of the backups.
At the moment i have given them DBO acess to the MASTER and MSDB databases.
Can i add them to any of the other groups instead of DBO?
regards,
Shin..
Comments
E.g. for a Windows user named 'backupaudit':
- create the new user in Windows
- grant this user access to the SQL Server instance
- grant this user access to the master database. You need not grant the dbo role, just the 'public' role is sufficient
- grant this user rights to run the sqbutility extended stored procedure e.g.
GRANT EXECUTE ON sqbutility TO backupaudit
This user can now use the SQL Backup GUI to view the backup and restore history, but will not have rights to perform backups and restores.
You might want to create a Windows user group instead and grant the SQL Server rights to this group, then add the individual users to this group, to simplify user management.
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
Otherwise once in a while the GUI would complain about not having access to it and drop the connection to the server.