<?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 Issue with Export to Database INDX in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-with-export-to-database-indx/m-p/10232202#M1827436</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Subhajit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls delete the data from memory after importing it and recheck the code performance.&lt;/P&gt;&lt;P&gt;Refer below code for deletion.&lt;/P&gt;&lt;P&gt;DELETE from database indx(xy) id 'lv_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sudeesh Soni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Apr 2014 04:08:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-04-24T04:08:14Z</dc:date>
    <item>
      <title>Performance Issue with Export to Database INDX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-with-export-to-database-indx/m-p/10232199#M1827433</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 am facing some performance issue with the below statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT li_table FROM li_li_table TO DATABASE indx(dl) ID lv_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In our system, multiple jobs are running at the same time and hitting this statement. A trace shows this statement to be doing updation and hence taking longer time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My query is Ideally this statement should behave like an insert statement to the INDX table. Then should there be any locking issue with multiple jobs. Secondly, does high volume of data not work better with this statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2014 21:18:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-with-export-to-database-indx/m-p/10232199#M1827433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-23T21:18:23Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Issue with Export to Database INDX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-with-export-to-database-indx/m-p/10232200#M1827434</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;ID lv_vbeln works as (part of) table key, so if this is already used there will be an update instead of insert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Custodio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2014 01:01:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-with-export-to-database-indx/m-p/10232200#M1827434</guid>
      <dc:creator>custodio_deoliveira</dc:creator>
      <dc:date>2014-04-24T01:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Issue with Export to Database INDX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-with-export-to-database-indx/m-p/10232201#M1827435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Subhajit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The DB locks will be created for INDX table. These locks can be checked in DB02 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use programs RSBTONEJOB or RSBTONEJOB2 to prevent multiple instances of the same job running .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2014 02:07:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-with-export-to-database-indx/m-p/10232201#M1827435</guid>
      <dc:creator>Mohamed_Mukhtar</dc:creator>
      <dc:date>2014-04-24T02:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Issue with Export to Database INDX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-with-export-to-database-indx/m-p/10232202#M1827436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Subhajit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls delete the data from memory after importing it and recheck the code performance.&lt;/P&gt;&lt;P&gt;Refer below code for deletion.&lt;/P&gt;&lt;P&gt;DELETE from database indx(xy) id 'lv_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sudeesh Soni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2014 04:08:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-with-export-to-database-indx/m-p/10232202#M1827436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-24T04:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Issue with Export to Database INDX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-with-export-to-database-indx/m-p/10232203#M1827437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Subhajit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you got the solution then please mark the correct answer and close the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sudeesh Soni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2014 09:05:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-with-export-to-database-indx/m-p/10232203#M1827437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-24T09:05:04Z</dc:date>
    </item>
  </channel>
</rss>

