Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Processing multiple entries without parallel processing framework

Former Member
0 Likes
455

Hi

Apart from parallel processing framework, is there any other workaround to process multiple entries?

Scenario is as follows:

Retrieve all data from a master table for a certain criteria (close to 2 million entries selected).

Retrieved further data for each of these 2 million entries from another table(around 8 million entries now)

Summarise (basiacally collect) data for all these 8 million entries.

I have tried using SELECT ENDSELECT using package size to reduce the load to avoid memory issues.... but this is still a sequential approach rather than Parallel processing.

Any suggestions?

Thanks.

2 REPLIES 2
Read only

franois_henrotte
Active Contributor
0 Likes
409

I suggest using OPEN CURSOR FOR SELECT with a join between your 2 tables

if you are able to use some ranges in order to separate entries into several blocks you can do it for each block in parallel

Read only

0 Likes
409

Please keep in mind that OPEN CURSOR is not compatible with an aRFC parallelization approach.