Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Oracle RAC Stored Procedure scalability
HansF wrote:
>> The different members of the cluster all access the same disk. So if the >> sql statements can scale horizontillay then the stored proc can >> Jim
When the user knows that e.g. a cursor loop with n SQL statements inside
can be parallelized then executing n-procedures in parallel without
stepping on each others toes, each processing a part of the cursor makes
a lot of sense.
I have seen this in Oracle PL/SQL applications (especially batch
processing) and I use it myself.
Now if Oracle has solved the problem of transparent parallelization of logic in general without instrumentation of the language I'm sure the parallel Fortran compiler guys downstairs from me would love to talk to them :-)
Note my use of "by default". Contructs like FORALL or BULK COLLECT are specific language directives.
-- Serge Rielau DB2 Solutions Development IBM Toronto Lab IOD Conference http://www.ibm.com/software/data/ondemandbusiness/conf2006/Received on Thu Aug 03 2006 - 07:10:24 CDT
![]() |
![]() |