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

How to make a trace to program ?

former_member425121
Participant
0 Likes
641

Hi

Does somebody can tell me how can i make a trace to program in order to find in wich code point the process is getting 'stand-by' (does not finish) ; that is, in wich DB access, LOOP, etc. the program is making the work wich takes a lot of time.

I need to discover where are the performance problems and how much the program access the DB with SELECTS.

Regards

Frank

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
609

Hi,

You can use ST05 for SQL trace..

You can also use SE30 for runtime analysis..

Thanks,

Naren

Hi

Does somebody can tell me how can i make a trace to program in order to find in wich code point the process is getting 'stand-by' (does not finish) ; that is, in wich DB access, LOOP, etc. the program is making the work wich takes a lot of time.

I need to discover where are the performance problems and how much the program access the DB with SELECTS.

Regards

Frank

4 REPLIES 4
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
609

Transacation ST05 will allow you to do a SQL trace showing all of the DB hits during the program runtime.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
610

Hi,

You can use ST05 for SQL trace..

You can also use SE30 for runtime analysis..

Thanks,

Naren

Read only

Former Member
0 Likes
609

Hi,

make use of the transaction code ST05 for the trace of database selects, Just press the Trace on button and run your program, and inthe ST05, press the Trace off button and look at the list, you will understand.

Even you can use the transaction ST04 -> Database performance analyzer

ST03 -->Workload on the System

Regards

Sudheer

Read only

0 Likes
609

Thanks ..