Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以通过它执行的代码来搜索一个 JOB?IE 我想找到启动某个存储过程的JOB。
有查询吗?
select * from user_jobs where what like '%my_token%';
尝试使用 all_dependencies 视图。
select * from all_dependencies where referenced_name = 'YOUR_STORED_PROC';