sql server role for junior dba

  • whats the best role(s) to assign a junior dba if you want them to see jobs, error logs, activity monitor, and run profiler but not be able to manage jobs or kill processes?

  • There is no such build in role. The problem with your request is that you cannot create user-defined server roles. So you will end up with granting all kind of permissions to your junior dba.

    For monitoring jobs you have the SQLAgentOperatorRole, for using Profiler you need to grant ALTER TRACE permission. In order to read the errorlog by default you need to be sysadmin, but you could also grant permission on xp_readerrorlog. And so you probably need to grant a couple of more permissions.

    [font="Verdana"]Markus Bohse[/font]

  • thank you,

    thats what i needed to read!

  • VIEW SERVER STATE too.

    ~BOT

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply