Frage

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?

Keine korrekte Lösung

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit dba.stackexchange
scroll top