I have a procedure like this.
create or replace
Procedure PROCEDURE_NAME
begin
Insert Instructions
Insert Instructions
Insert Instructions
Some Instructions
Some Instructions
Some Instructions
end;
The above shall be instruction blocks which can be executed parallel without having any sort of conflicts. How can I define in Oracle Procedure to execute them in parallel ?
I can make different procedures for them but looking for minimum modification in this procedure, I believe to call instruction parallel in SQL is possible.