<?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: Index in SQL in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184431#M126697</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use Hints( I think only for oracle db ).  You can define the index in SE11.  To make the select statement use the index, you must write your WHERE statement in the order of the indexed fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jan 2006 02:07:31 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-01-11T02:07:31Z</dc:date>
    <item>
      <title>Index in SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184429#M126695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello experts, how can I implement index in my SQL Statements? can anyone provide simple code snippets... thank you very much in advance...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 02:00:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184429#M126695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T02:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Index in SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184430#M126696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you want to use a particular index? For that you would have to use HINTS. Or do you just want to make sure that your select is using an index effectively?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 02:04:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184430#M126696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T02:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Index in SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184431#M126697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use Hints( I think only for oracle db ).  You can define the index in SE11.  To make the select statement use the index, you must write your WHERE statement in the order of the indexed fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 02:07:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184431#M126697</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-11T02:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: Index in SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184432#M126698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sir, i have lots of query in my ABAP program, and the program terminates because of timeout (maybe there is a time limit in the processing of SQL statements), Ive filtered my SQL alot, I even avoided innerjoins, the solution I think is maybe Indexing will help. thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 02:10:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184432#M126698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T02:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Index in SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184433#M126699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a time limit, but not on SELECT statements, the limit is on overall runtime.  This is a global system setting.  Using indexes can help the performance of the select statements, but could also decrease the performance when updating the TABLE that the index has been applied to.  Can you please post your code, maybe we can make some suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 02:12:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184433#M126699</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-11T02:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: Index in SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184434#M126700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well we really need to see the select that's causing the problem. In this case you want o make sure your using an index effectively. So you won't want to use hints.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 02:14:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184434#M126700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T02:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: Index in SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184435#M126701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if the table you are using has an index you can try and get sql to use it by coding the fields of the index in the where clause of your select (in the same sequence as they appear in the index). Use ST05 to explain your sql if you can and this should confirm/deny whether your code uses an index or not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 02:29:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/index-in-sql/m-p/1184435#M126701</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-01-11T02:29:07Z</dc:date>
    </item>
  </channel>
</rss>

