通过调用的过程搜索特定的 JOB

发布于 2024-12-05 15:48:26 字数 133 浏览 1 评论 0原文

是否可以通过作业执行的代码来搜索作业? IE 我想找到启动某个存储过程的作业。

有查询可以做到吗?

在此处输入图像描述

Is it possible to search a JOB by the code it executes?
I.E. I want to find the JOB that launches a certain stored procedure.

Is there a query to do it?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

毁我热情 2024-12-12 15:48:26
select 
  * 
from 
  user_jobs 
where 
  what like '%my_token%';
select 
  * 
from 
  user_jobs 
where 
  what like '%my_token%';
身边 2024-12-12 15:48:26

尝试使用 all_dependency 视图。

select * from all_dependencies where referenced_name = 'YOUR_STORED_PROC';

Try using the all_dependencies view.

select * from all_dependencies where referenced_name = 'YOUR_STORED_PROC';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文