How run two or more instances of an oracle job in the same time?

断了今生、忘了曾经 提交于 2019-12-08 02:49:45

问题


I have defined a function that when it is called it will define an oracle job with

dbms_scheduler.create_job

that runs a store_procedure with arguments

my Function
Begin
    job created and executed from here
end;

My problem is that when an instance of my job is executing I can not execute another instance of that job. as I said my jobs executes a store_procedure that have arguments so I want to execute that job with different values of arguments in the same time but I can not. is there any property or way that can help me to do this?


回答1:


Give the jobs you create random names.



来源:https://stackoverflow.com/questions/17127039/how-run-two-or-more-instances-of-an-oracle-job-in-the-same-time

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!