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

performance tuning

Former Member
0 Likes
850

Hi experts,

Can I get some info about 'Performance Tuning'?

thnx for the help.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
794

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

7 REPLIES 7
Read only

Former Member
0 Likes
794

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

Read only

Former Member
0 Likes
795

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

Read only

0 Likes
794

Hi all..

thnx a lot

Message was edited by: sey ni

Read only

0 Likes
794

Hi,

Sent you the docs.

Read only

Former Member
0 Likes
794

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