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

Increase Perfromance while Inserting Recs to a DB table

Former Member
0 Likes
520

Hi,

I have program which does all the calculation and then fills an Internal Table.

I then use

INSERT <db_table> FROM TABLE <internal_table>.

to load the data from internal table to load DB table.

Total number of records is high app 80,000. As a resul this Insert takes good amount of time.

Is there a more efficient way to do insert.

Thank You,

CD

Hi,

I have program which does all the calculation and then fills an Internal Table.

I then use

INSERT <db_table> FROM TABLE <internal_table>.

to load the data from internal table to load DB table.

Total number of records is high app 80,000. As a resul this Insert takes good amount of time.

Is there a more efficient way to do insert.

Thank You,

CD

3 REPLIES 3
Read only

Former Member
0 Likes
502

I will suggest the same if it is your custom table.

Run the report for inserting values in Background and if the execution time runs out ask the basis to increase the job time for this program.

Thanks,

Jayant

Edited by: Jayant Sahu on Nov 20, 2008 5:28 PM

Read only

Former Member
0 Likes
502

You're using an array insert. I don't think you can do much better than that.

Rob

Read only

0 Likes
502

Thanks Rob and Jayant.