unix fork/wait? parallel process within a pl/sql procedure
Hi All
We like to record our process into a historical table.
And Let say base Table <a>, <b>, <c>, <d>
and
historical table <ha> <hb> <hc> <hd>
the report is a single process
but within which some of it is slow running and some of it is fast running
and we will have a RunId and a time_sk
a sequence and a number converted date format
e.g.
RunId = 1001
time_sk=20110414
so how can we achieve parallelism
in unix I can fork a process and wait for all the child process to finish
is there something like that in Oracle PL/SQL?