简体   繁体   English

Oracle表-在调度程序中查找作业

[英]Oracle table -Find the job in scheduler

I have a table in oracle which is filled with data from an excel sheet on daily basis. 我在oracle中有一张表,每天都有一张来自excel表的数据。 I heard from a colleague that some job in the oracle scheduler has been running dail to update the table. 我从一位同事那里听说,Oracle Scheduler中的某些作业一直在运行dail以更新表。 Is there any way to find the exact job? 有什么办法可以找到确切的工作?

Thanks in advance 提前致谢

What you can do is to get a list of all scheduled jobs in Oracle using the below query. 您可以使用以下查询来获取Oracle中所有预定作业的列表。 After that, you would have to check the jobs individually to figure out which job is updating your table. 之后,您将必须单独检查作业,以找出哪个作业正在更新您的表。

SELECT * 
FROM DBA_SCHEDULER_JOBS;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM