gpt4 book ai didi

sql - 我如何加入 msdb.dbo.sysoperators 和 msdb.dbo.sysalerts?

转载 作者:行者123 更新时间:2023-12-01 09:58:14 25 4
gpt4 key购买 nike

我使用的是 sql server 2008 r2。

我想为我的所有作业创建脚本以进行备份。

我需要找到一个作业中存在的所有对象。现在我可以做到了,但是

为了实现这个目标,我得到了这个查询的所有运算符

Select O.* From msdb.dbo.sysoperators As O

我可以找到所有关于这个查询的警报

Select * From msdb.dbo.sysalerts

每个警报都有几个运算符。

我想将两个表连接在一起。

我如何让所有运算符(operator)都发出警报?

最佳答案

你最常使用这个查询

Select * 
From sysalerts As Ale
Inner Join sysnotifications As Noti on ( Ale.id = Noti.alert_id )
Inner Join sysoperators As Ope On ( Noti.operator_id = ope.id )

关于sql - 我如何加入 msdb.dbo.sysoperators 和 msdb.dbo.sysalerts?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18051426/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com