<?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: Performance Improvement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement/m-p/3582555#M862477</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SYSDBA is the Oracle schema (like a database) ans PAGES is the table.  I'm not sure, but this looks like a system database, and this table must have the information about all tables in the DB. Check if this command isn't inside a loop. If this single instruction is taking around 30 min, you shoudl contact Basis or the DBA administrator to check this table in Oracle, so you can analyze it and see what you can do to improve performance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Mar 2008 11:59:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-27T11:59:06Z</dc:date>
    <item>
      <title>Performance Improvement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement/m-p/3582552#M862474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Expertss,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having a FM that has this piece of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXEC SQL.&lt;/P&gt;&lt;P&gt;      SELECT DESCRIPTION, NUMERIC_VALUE, SHORT_COLUMN_PAGES&lt;/P&gt;&lt;P&gt;      INTO :GS_TABLESIZE-DESCRIPTION, :GS_TABLESIZE-VALUE,&lt;/P&gt;&lt;P&gt;           :GS_TABLESIZE-SHORT_LONG_VAL&lt;/P&gt;&lt;P&gt;      FROM SYSDBA.PAGES&lt;/P&gt;&lt;P&gt;      WHERE OWNER = :OWNER_NAME&lt;/P&gt;&lt;P&gt;      AND TABLENAME = :TABLE_NAME&lt;/P&gt;&lt;P&gt;ENDEXEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It takes a lot of time to execute (abot 30 min).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to reduce the time of the execution.&lt;/P&gt;&lt;P&gt;Can you please provide me with your inputs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, what does the line FROM SYSDBA.PAGES indicates? Is it that SYSDBA is a table n PAGES is a field of it?&lt;/P&gt;&lt;P&gt;I am asking this bcoz i m not too sure with this Native SQL thing. I will reward all the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mohit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 11:48:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement/m-p/3582552#M862474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T11:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement/m-p/3582553#M862475</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;U should check if you're using key fields for the query&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should be the name of the dblink or database and the name of the table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 11:55:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement/m-p/3582553#M862475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T11:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement/m-p/3582554#M862476</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;These might help u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The order of fields in the "WHERE" should follow the order of fields in the table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 11:58:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement/m-p/3582554#M862476</guid>
      <dc:creator>abapdeveloper20</dc:creator>
      <dc:date>2008-03-27T11:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement/m-p/3582555#M862477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SYSDBA is the Oracle schema (like a database) ans PAGES is the table.  I'm not sure, but this looks like a system database, and this table must have the information about all tables in the DB. Check if this command isn't inside a loop. If this single instruction is taking around 30 min, you shoudl contact Basis or the DBA administrator to check this table in Oracle, so you can analyze it and see what you can do to improve performance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 11:59:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement/m-p/3582555#M862477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T11:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Improvement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement/m-p/3582556#M862478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check the key fields and give all the fields possibe then u wil get  good performance..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the importance of the key fields..with this example..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr &lt;/P&gt;&lt;P&gt;          meins &lt;/P&gt;&lt;P&gt;          from mara &lt;/P&gt;&lt;P&gt;         into table it_mara&lt;/P&gt;&lt;P&gt;where matnr in s_matnr .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select mtart&lt;/P&gt;&lt;P&gt;          pstat &lt;/P&gt;&lt;P&gt;          matrn&lt;/P&gt;&lt;P&gt;from mara &lt;/P&gt;&lt;P&gt;into table it_mara&lt;/P&gt;&lt;P&gt;where mtart in s_mtart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;execute these two in the st05 and check the performance..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venakt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 12:02:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-improvement/m-p/3582556#M862478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T12:02:39Z</dc:date>
    </item>
  </channel>
</rss>

