January 27, 2012 at 2:50 pm
Hi,
What is the least privilege required to take and restore database backups on user databases..?
January 27, 2012 at 2:52 pm
anyone in the db_owner role of an individual database has the ability to backup, restore or drop their own database, without additional server-wide permissions.
will that work for you?
Lowell
January 27, 2012 at 3:03 pm
Thanks Lowell.
Actually, this is what I have granted to the user..I tried to use the db_backupoperator_role. It did not help.
I was just wondering is there any other way.. by not giving db_owner privileges..
Thanks!
Siva.
January 27, 2012 at 9:26 pm
You can grant backup database permission on user. without giving db_owner rights.
GRANT BACKUP DATABASE TO [test1]
GO
GRANT BACKUP LOG TO [test1]
January 29, 2012 at 8:08 am
Thanks Poojari. Is there any specific privilege to grant load privileges as well..?
January 30, 2012 at 12:08 am
Siva Ramasamy (1/27/2012)
Thanks Lowell.Actually, this is what I have granted to the user..I tried to use the db_backupoperator_role. It did not help.
I was just wondering is there any other way.. by not giving db_owner privileges..
Thanks!
Siva.
Create a job and give them privs to run the job. No need to give them dbo privs.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply