<?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: indexes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578098#M861343</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayasankar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Primary index: The primary index contains the key fields of the table and a pointer to the non-key fields of the table. The primary index is created automatically when the table is created in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Secondary index: Additional indexes could be created considering the most frequently accessed field of the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An index can be used to speed up the selection of data records from a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An index can be considered to be a copy of a database table reduced to certain fields. The data is stored in sorted form in this copy. This sorting permits fast access to the records of the table (for example using a binary search). Not all of the fields of the table are contained in the index. The index also contains a pointer from the index entry to the corresponding table entry to permit all the field contents to be read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only those fields whose values significantly restrict the amount of data are meaningful in an index. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tutorials/ABAP/SecondaryIndex/Create.htm" target="test_blank"&gt;http://www.saptechnical.com/Tutorials/ABAP/SecondaryIndex/Create.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Arjun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Mar 2008 05:28:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-17T05:28:05Z</dc:date>
    <item>
      <title>indexes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578093#M861338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why r we using indexes for tables.what is the significance of indexes?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 04:46:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578093#M861338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T04:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: indexes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578094#M861339</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;Follow the below link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/cf/21eb20446011d189700000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/cf/21eb20446011d189700000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AWARD POINTS IF USEFUL&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 04:51:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578094#M861339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T04:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: indexes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578095#M861340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Indexes are used to speed up the accesss of data from Database tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generally Primary indexes are created by the SAP itself&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It allows us to create secondary indexes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 04:55:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578095#M861340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T04:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: indexes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578096#M861341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should only create secondary indexes, for database &lt;/P&gt;&lt;P&gt;tables from which you mainly read, since indexes have to be &lt;/P&gt;&lt;P&gt;updated each time the database table is changed.  secondary &lt;/P&gt;&lt;P&gt;indexes should contain columns that you use frequently in a &lt;/P&gt;&lt;P&gt;selection, and that are as highly selective as possible to &lt;/P&gt;&lt;P&gt;improve performance..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 04:56:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578096#M861341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T04:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: indexes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578097#M861342</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;Generally indexes are used to increase the speed of the database tables.&lt;/P&gt;&lt;P&gt;Primary indexes are created by SAP itself.&lt;/P&gt;&lt;P&gt;You can create secondary indexes, for database &lt;/P&gt;&lt;P&gt;tables from which you mainly read, since indexes have to be &lt;/P&gt;&lt;P&gt;updated each time the database table is changed. secondary &lt;/P&gt;&lt;P&gt;indexes should contain columns that you use frequently in a &lt;/P&gt;&lt;P&gt;selection, and that are as highly selective as possible to &lt;/P&gt;&lt;P&gt;improve performance..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 05:11:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578097#M861342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T05:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: indexes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578098#M861343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayasankar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Primary index: The primary index contains the key fields of the table and a pointer to the non-key fields of the table. The primary index is created automatically when the table is created in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Secondary index: Additional indexes could be created considering the most frequently accessed field of the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An index can be used to speed up the selection of data records from a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An index can be considered to be a copy of a database table reduced to certain fields. The data is stored in sorted form in this copy. This sorting permits fast access to the records of the table (for example using a binary search). Not all of the fields of the table are contained in the index. The index also contains a pointer from the index entry to the corresponding table entry to permit all the field contents to be read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only those fields whose values significantly restrict the amount of data are meaningful in an index. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tutorials/ABAP/SecondaryIndex/Create.htm" target="test_blank"&gt;http://www.saptechnical.com/Tutorials/ABAP/SecondaryIndex/Create.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Arjun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 05:28:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/indexes/m-p/3578098#M861343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T05:28:05Z</dc:date>
    </item>
  </channel>
</rss>

