问题
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