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

SQL Trace ST05

Former Member
0 Likes
801

Hello,

Can i know how can i use ST05 SQL Trace for checking the performance of my program.

I cheked some of the posts and google also but there is only vague idea.

I need to know what all things needs to be cheked and the diffrent functions in ST05.

Many Thanks,

Neeraj

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
769

Check out this blog

6 REPLIES 6
Read only

Former Member
0 Likes
770

Check out this blog

Read only

Former Member
Read only

Former Member
0 Likes
769

You can use ST04 after executing the program.There you can see all select statements with actual indexes used .

Atul Zope

Read only

Former Member
0 Likes
769

Hi Neeraj,

Before executing your program click on 'Activate Trace' button in ST05 for SQL Trace checkbox.

Then execute your program.

Goto ST05 and now click on 'Deactivate Trace' button.

Then click 'Display Trace'.

Now you will get the time taken along with no. of records fetches and some more info for each and every SELECT query used in your program.

Whenever you see red color for any SELECT query that means your query has taken more time for execution and you should then try and optimize your query.

Regards,

Saba

Read only

bpawanchand
Active Contributor
0 Likes
769

Check this blog

Read only

0 Likes
769

Many Thanks Everyone.