This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

SQL Server Agent Job modification details

We have some SQL Jobs disabled. somehow the jobs are enabled.

Is there any way to find who and when the jobs are modified using SolarWinds DPA?

  • If you know what SQL statement or tables/columns is used for SQL Jobs admin, you could use the DPA "FindSQL" feature and filter SQL statements by portions of the text and what time, users, applications, or client hosts requested their execution.

    However, DPA shouldn't be used as an auditing tool. While DPA collects statistics on queries every second, if the SQL Jobs modification took less than a second to run and it executed entirely in between one DPA collection cycle ended and before the next starts, there is a race condition where DPA could miss capturing that query instance.

    You'd be better off scanning the DB's execution history for the SQL Jobs activity in question from msdb.dbo.sysjobhistory, msdb.dbo.sysjobs, msdb.dbo.sysjobactivity etc.

    If you wish to be alerted in the future when/if it happens again, you could create a DPA custom alert that queries those views/stored procs and upon matching the criteria you are looking for, send an alert notification to email, Teams, Slack etc.