Application Development 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: 

performance tuning

Former Member
0 Kudos

Hi experts,

Can I get some info about 'Performance Tuning'?

thnx for the help.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

To get a document on Perf Tuning, please give your e-mail.

7 REPLIES 7

Former Member
0 Kudos

Restrict the Select option.

Try to use where clause as per the index.

Dont use SELECT ENDSELECT, Instead of that use for all entries in table....

Try to use BINARY SEARCH with READ table.[be sure to SORT that internal table based on the key fields]

Always use Extended program check or use code inspector.

Regards

Aman

Former Member
0 Kudos

To get a document on Perf Tuning, please give your e-mail.

0 Kudos

Hi all..

thnx a lot

Message was edited by: sey ni

0 Kudos

Hi,

Sent you the docs.

Former Member
0 Kudos

There are really only two things to remember:

When selecting from large database tables, make effective use of an index.

Avoid nested loops on large internal tables.

Doing these two can speed up a program 10s of times. Everything else (avoiding select/endselect) is good, but won't help as much as the two I've mentioned.

Rob