<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Sql trace in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-trace/m-p/920742#M58900</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everybody,&lt;/P&gt;&lt;P&gt;Thanks for helping me out.... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Christian, Your reply really answered my all questions... Thanks...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kelly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Feb 2005 15:39:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-02-14T15:39:28Z</dc:date>
    <item>
      <title>Sql trace</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-trace/m-p/920738#M58896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I am new to this ABAP field..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I know how to do SQL trace ....But what I am not getting is " &amp;lt;b&amp;gt;HOW CAN WE TELL FROM THE OUTPUT OF SQL TRACE, THAT THIS IS THE CAUSE OF SLOW PERFORMANCE OF A REPORT&amp;lt;/b&amp;gt;" Based on what are we determining the performance?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can Anybody help me here pls?............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kelly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Feb 2005 21:35:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-trace/m-p/920738#M58896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-11T21:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Sql trace</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-trace/m-p/920739#M58897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kelly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try &amp;lt;b&amp;gt;"Runtime Analysis Tool"&amp;lt;/b&amp;gt; instead. The transaction code is &amp;lt;b&amp;gt;"SE30"&amp;lt;/b&amp;gt;. There you can analyse database calls, etc... and see what takes how much time during runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Feb 2005 21:48:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-trace/m-p/920739#M58897</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2005-02-11T21:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sql trace</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-trace/m-p/920740#M58898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From the SQL trace you can find,&lt;/P&gt;&lt;P&gt;1. are there recurrsive database calls&lt;/P&gt;&lt;P&gt;2. What index a particular selecte statement is using&lt;/P&gt;&lt;P&gt;3. What is the cost per database read&lt;/P&gt;&lt;P&gt;4. Which database read is taking more time, etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Feb 2005 03:06:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-trace/m-p/920740#M58898</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-02-12T03:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Sql trace</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-trace/m-p/920741#M58899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kelly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you really have no idea, why a report is slow, then you have to start with SE30 (runtime analysis).&lt;/P&gt;&lt;P&gt;There are three bargraphs: ABAP / database / system.&lt;/P&gt;&lt;P&gt;System should be more or less nothing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If ABAP is bigger than database: have a look at slow abap-statements (normally operations with internal tables: read, delete, loop where,...); classic reason: to much reads without binary search / sorted table / hashed table use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If database is bigger than ABAP: have a look at your SQL statements. If you can see already forgotten key fields, fine - otherwise SQL trace will bring help in analyzing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A SQL trace itself says nothing about overall performance (which is done by runtime analysis), only about database part. But 'normally' programmers have their ABAP-part in control and struggle only with slow selects: that's the reason, why often SQL trace is used immediately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope, this brings a little bit light in your question,&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Feb 2005 09:08:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-trace/m-p/920741#M58899</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2005-02-12T09:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Sql trace</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-trace/m-p/920742#M58900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everybody,&lt;/P&gt;&lt;P&gt;Thanks for helping me out.... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Christian, Your reply really answered my all questions... Thanks...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kelly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2005 15:39:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-trace/m-p/920742#M58900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-14T15:39:28Z</dc:date>
    </item>
  </channel>
</rss>

