<?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: How do Indexes work? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499537#M564668</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthik,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The created index is itself acts as a table..but not sure if it is stored anywhere with the sorted data...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jul 2007 16:06:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-19T16:06:24Z</dc:date>
    <item>
      <title>How do Indexes work?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499531#M564662</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;&lt;/P&gt;&lt;P&gt;I was curious about exactly how do indexes work? Is the data in the table stored in the index format somewhere for quick retrieval?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 15:29:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499531#M564662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T15:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do Indexes work?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499532#M564663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When we create an index  with 2 fields ,  it is assumed that there exists a table with those 2 fields only ignoring the rest of the fields in the main table which makes the selct statement faster..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 15:33:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499532#M564663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T15:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: How do Indexes work?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499533#M564664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Chandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the quick response. Is there anyway I can know where can I see that assumed table which is created?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 15:34:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499533#M564664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T15:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do Indexes work?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499534#M564665</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;Indexes are used alongwith the where condition in select statement to speed up the data fetches and at the same time reducing load on database by shorting out the no. of records as per requirements and prevents unnecessary records to come in picture.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ameet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 15:42:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499534#M564665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T15:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: How do Indexes work?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499535#M564666</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;An insex is copy of one or more columns sorted in ascending order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let, select f1 f2 from t1 where f1 = 'A' and f2 = 'B'. ( f1, f2 belongs to index)&lt;/P&gt;&lt;P&gt;Now when this statement is executed,system will find the record from index where f1 = A and f2 = B and get the corresponding row number and go to the corresponding row to the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a result searching will be fast.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Srikanta Gope&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 15:45:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499535#M564666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T15:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do Indexes work?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499536#M564667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I know all the funda which you all are so patiently trying to explain. I just wanted to know whether I can see this sorted data of few fields of a table anywhere in SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 15:49:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499536#M564667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T15:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do Indexes work?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499537#M564668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthik,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The created index is itself acts as a table..but not sure if it is stored anywhere with the sorted data...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 16:06:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499537#M564668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T16:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do Indexes work?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499538#M564669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any documentation on how secondary indexes work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 16:08:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499538#M564669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T16:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: How do Indexes work?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499539#M564670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actally , its works on concept of Bookmark.That is fields on which indexes r created help in searching that records fastly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 17:04:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-indexes-work/m-p/2499539#M564670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T17:04:20Z</dc:date>
    </item>
  </channel>
</rss>

