How to start two or more instances of an oracle job at the same time?

I defined a function that, when called, will determine the oracle's assignment using

dbms_scheduler.create_job

which runs store_procedure with arguments

my Function Begin job created and executed from here end; 

My problem is that when an instance of my work is being executed, I cannot execute another instance of this work. since I said that my work is done by store_procedure, which has arguments, so I want to do this work with different values ​​of the arguments at the same time, but I cannot. is there any property or method that can help me do this?

+2
source share
1 answer

Give assignments in which you create random names.

+4
source

Source: https://habr.com/ru/post/1261905/


All Articles