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

Select Statement

Former Member
0 Likes
313

Hi

I am a beginner in ABAP.

I want to ask how use of select statement affects the performance?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
283

Select statement has long response time.

Long database request time caused by too many buffers.

Many data blocks are scanned to find the selected records.

This affects the performance of program.

2 REPLIES 2
Read only

MarcinPciak
Active Contributor
0 Likes
283

Hi,

It depends of how you use SELECT statement. There are some recommended apporaches and the ones that should generally be avoided due to poor performance.

Please refer [Performance tuning|http://sapbrainsonline.com/ARTICLES/TECHNICAL/optimization/optimization.html]

You may also take a look at

Regards

Marcin

Edited by: Marcin Pciak on Aug 7, 2009 4:25 PM

Read only

Former Member
0 Likes
284

Select statement has long response time.

Long database request time caused by too many buffers.

Many data blocks are scanned to find the selected records.

This affects the performance of program.