<?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: select data from database tables with high performance in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-from-database-tables-with-high-performance/m-p/3482725#M837330</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also Check you are not using open sql much like distict order by group by , use abap techniques on internal table to acive the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also Dont use select endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if possible use up to n rows claus....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;taht will limit the data base hits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also dont run select in siode any loops.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i guess these are some of the trics oyu can use to avoid frequent DATA BASE HITS AND ABVOID THE DATA BASE LAOD.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 08 Mar 2008 08:29:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-08T08:29:49Z</dc:date>
    <item>
      <title>select data from database tables with high performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-from-database-tables-with-high-performance/m-p/3482722#M837327</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;how to select data from different database tables with high performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im using for all entries instead of inner joins, even though burden on data base tables is going very high ( 90 % in se30) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hw to increase the performance.&lt;/P&gt;&lt;P&gt;kindly, reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2008 08:01:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-from-database-tables-with-high-performance/m-p/3482722#M837327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-08T08:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: select data from database tables with high performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-from-database-tables-with-high-performance/m-p/3482723#M837328</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;I think may be large amount of data vl b the problem for tht.&lt;/P&gt;&lt;P&gt;U can run tht one in back ground also &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use secondary index concept in select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use secondary index on fields wher u used in where condition part of  select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it vl reduce.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;R.P.Sastry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2008 08:14:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-from-database-tables-with-high-performance/m-p/3482723#M837328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-08T08:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: select data from database tables with high performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-from-database-tables-with-high-performance/m-p/3482724#M837329</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;Check if you are selecting the required data only.&lt;/P&gt;&lt;P&gt;Rectify the where clause .&lt;/P&gt;&lt;P&gt;You can use the selection by primary key filds if possible.&lt;/P&gt;&lt;P&gt;if records are in millions then go for secondary indexes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2008 08:26:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-from-database-tables-with-high-performance/m-p/3482724#M837329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-08T08:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: select data from database tables with high performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-from-database-tables-with-high-performance/m-p/3482725#M837330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also Check you are not using open sql much like distict order by group by , use abap techniques on internal table to acive the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also Dont use select endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if possible use up to n rows claus....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;taht will limit the data base hits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also dont run select in siode any loops.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i guess these are some of the trics oyu can use to avoid frequent DATA BASE HITS AND ABVOID THE DATA BASE LAOD.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2008 08:29:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-from-database-tables-with-high-performance/m-p/3482725#M837330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-08T08:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: select data from database tables with high performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-from-database-tables-with-high-performance/m-p/3482726#M837331</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;do like this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. select all keys for the selection criteria , because if some cases we generally doesnt use all the keys but it is very important.&lt;/P&gt;&lt;P&gt;2. sort table with binary search  is must.&lt;/P&gt;&lt;P&gt;3. get the required fields only and not all the fields for selection  with higher structure.&lt;/P&gt;&lt;P&gt;4 . avoid looping in side the select .&lt;/P&gt;&lt;P&gt;5. use select upto 1 row rather than select single.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it may be useful ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2008 08:57:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-from-database-tables-with-high-performance/m-p/3482726#M837331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-08T08:57:06Z</dc:date>
    </item>
  </channel>
</rss>

