January 7, 2009 at 12:44 pm
How do I disable user access to create SQL Server Jobs? I want the user to be able to view the jobs but not creating new one.
Thanks,
Thuy
January 7, 2009 at 12:57 pm
See if the default roles meets ur requirement:http://technet.microsoft.com/en-us/library/ms188283.aspx
Or you can explicitly deny access on sp_add_job stored procedure for that particular user.
MJ
January 7, 2009 at 1:08 pm
make them part of SQLAgentReaderRole
* Noel
January 7, 2009 at 6:23 pm
noeld (1/7/2009)
make them part of SQLAgentReaderRole
You also would need to remove them from the existing role that is providing them the rights currently. Don't forget to add the login as a user to msdb which is where the SQLAgentReaderRole exists. Then you add the database role to the user account.
Jonathan Kehayias | Principal Consultant | MCM: SQL Server 2008
My Blog | Twitter | MVP Profile
Training | Consulting | Become a SQLskills Insider
Troubleshooting SQL Server: A Guide for Accidental DBAs[/url]
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply