Question

I am using SQL Server 2008 R2 and I want to create a script of my jobs.

I need to find all objects that exist in one job.

To achieve this goal, I get all operators with this query:

SELECT * FROM msdb.dbo.sysoperators

and I can find all Alerts with this query:

SELECT * FROM msdb.dbo.sysalerts

Each alert has several operators.

I want to join the two tables together.

  • How can I get all operators for all alerts?

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top