<?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 regarding  index in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-index/m-p/3132742#M744292</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi  ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hw can i know the  which index   using in the  select statment in the report s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regars&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Dec 2007 08:40:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-06T08:40:56Z</dc:date>
    <item>
      <title>regarding  index</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-index/m-p/3132742#M744292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi  ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hw can i know the  which index   using in the  select statment in the report s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regars&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 08:40:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-index/m-p/3132742#M744292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-06T08:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: regarding  index</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-index/m-p/3132743#M744293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;uses &amp;lt;b&amp;gt;clustered index&amp;lt;/b&amp;gt; to return the resultset efficiently and speedily&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT statement is not necessarily optimized by the database system or executed with the correct index. This can result in increased runtime costs. You should only use ORDER BY if the database sort uses the same index with which the table is read. To find out which index the system uses, &amp;lt;b&amp;gt;use SQL Trace in the ABAP Workbench Performance Trace.&amp;lt;/b&amp;gt; If the indexes are not the same, it is more efficient to read the data into an internal table or extract and sort it in the ABAP program using the SORT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Abap-fresher&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 08:44:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-index/m-p/3132743#M744293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-06T08:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: regarding  index</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-index/m-p/3132744#M744294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorting by the Primary Key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To sort the selection set in ascending order by the primary key, use the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT &amp;lt;lines&amp;gt; * &lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;... ORDER BY PRIMARY KEY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This sorting method is only possible if you use an asterisk (*) in the SELECT clause to select all columns. Furthermore, it only works if you specify a single database table in the FROM clause. You cannot use views or joins, since neither has a defined primary key.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 09:28:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-index/m-p/3132744#M744294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-06T09:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: regarding  index</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-index/m-p/3132745#M744295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;don't understand how the answers relate to the question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The actual index can only be seen in the SQL trace, see my SQL trace blog:&lt;/P&gt;&lt;P&gt;/people/siegfried.boes/blog/2007/09/05/the-sql-trace-st05-150-quick-and-easy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;of course, one can often guess from the runtimes whether the right index is used or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 11:59:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-index/m-p/3132745#M744295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-06T11:59:52Z</dc:date>
    </item>
  </channel>
</rss>

