Is there a way I can create a user defined role which will have the privileges to backup all the user databases on the server?I do not want to create a login and grant it sysadmin.I just want the login to have privilages to backup all the databases.I know I can run a code like:
EXEC sp_addrolemember N'db_backupoperator', N'LoginName'
on each database to give it the privilages but i have more than 200 databases.Is there a way I can grant db_backupOperator privilages to the login on all the databases?
thank you