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?
source share