I am currently trying to create a custom report outputting the SQL job status for all of our database servers. I have the simple query that outputs all of the sql jobs and their status:
SELECT * FROM [dbo].[APM_SqlBbJobInfo]
my issue at the moment is trying to relate the Application ID with the Node Id so that I can display the server name versus a numeric value. What would the SQL query be, or is there an easier way to accomplish this task.
We have a fair amount of SQL servers and a number of SQL jobs that would be useful to report on.