<?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 performance issue during fetching data from cluster table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827845#M661689</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;Because of the below select stmt I am getting poor performance.&lt;/P&gt;&lt;P&gt;But in sql trace it is showing KOCLU not KONV table....plz update me here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT KNUMV KPOSN  KSCHL  KAWRT KWERT&lt;/P&gt;&lt;P&gt;                INTO TABLE I_KONV&lt;/P&gt;&lt;P&gt;                FROM KONV&lt;/P&gt;&lt;P&gt;                WHERE KSCHL IN ('ZC00','ZS00','MWI2','R100') .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz also let me know the suggetions to improve performance..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Sep 2007 05:35:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-25T05:35:27Z</dc:date>
    <item>
      <title>performance issue during fetching data from cluster table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827845#M661689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;Because of the below select stmt I am getting poor performance.&lt;/P&gt;&lt;P&gt;But in sql trace it is showing KOCLU not KONV table....plz update me here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT KNUMV KPOSN  KSCHL  KAWRT KWERT&lt;/P&gt;&lt;P&gt;                INTO TABLE I_KONV&lt;/P&gt;&lt;P&gt;                FROM KONV&lt;/P&gt;&lt;P&gt;                WHERE KSCHL IN ('ZC00','ZS00','MWI2','R100') .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz also let me know the suggetions to improve performance..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 05:35:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827845#M661689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T05:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: performance issue during fetching data from cluster table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827846#M661690</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; use innerjoin query it will get good performance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;reward points if helpful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 05:38:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827846#M661690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T05:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: performance issue during fetching data from cluster table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827847#M661691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use buferring, which helps you to improve the performance.&lt;/P&gt;&lt;P&gt;U r using WHERE IN condition which is good.&lt;/P&gt;&lt;P&gt;Or beter u can the save 'ZC00','ZS00','MWI2','R100' these in an internal table,&lt;/P&gt;&lt;P&gt;and then u can use &lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;Select for all entries&amp;lt;/i&amp;gt; which is comparitively good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 05:38:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827847#M661691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T05:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: performance issue during fetching data from cluster table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827848#M661692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tuborg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KSCHL is neither  a primary key nor an index.So obviously it will take time.&lt;/P&gt;&lt;P&gt;First get all the data irrespecitve the KSCHL you  had mentioned,into an internal table and then filter the internal table with your requirement.&lt;/P&gt;&lt;P&gt;loop at ifinal.&lt;/P&gt;&lt;P&gt;IF NOT ( itfinal-kschl = 'ZC00' OR itfinal-KSCHL = 'ZS00'  OR itfinal-KSChL = 'MW12'  OR itfinal-KSCHL = 'R100'  )&lt;/P&gt;&lt;P&gt;DELETE ITFINAL.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 05:52:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827848#M661692</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-09-25T05:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: performance issue during fetching data from cluster table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827849#M661693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kiran,&lt;/P&gt;&lt;P&gt;I dont think that will give good performance. coz we are going to retreive all the table!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 06:00:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827849#M661693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T06:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: performance issue during fetching data from cluster table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827850#M661694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tuborg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Retrie all means whatever the data you want from the table not select *.&lt;/P&gt;&lt;P&gt;Always see to that you use only primary key fields or index fields to improve the performance.100% sure.&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 06:05:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827850#M661694</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-09-25T06:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: performance issue during fetching data from cluster table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827851#M661695</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;As you are getting the data from cluster table it will have the low performance. Just check if you can reduce your performance, or if you can increase the fields in WHERE clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 06:14:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-during-fetching-data-from-cluster-table/m-p/2827851#M661695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T06:14:11Z</dc:date>
    </item>
  </channel>
</rss>

