<?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 parallel processing of database in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483242#M559775</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends.&lt;/P&gt;&lt;P&gt;        if a internal table contains a lakh. how to divide into four and access it parallely. can anyone help. please send me the sample coding..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jun 2007 06:47:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-21T06:47:58Z</dc:date>
    <item>
      <title>parallel processing of database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483242#M559775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends.&lt;/P&gt;&lt;P&gt;        if a internal table contains a lakh. how to divide into four and access it parallely. can anyone help. please send me the sample coding..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:47:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483242#M559775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: parallel processing of database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483243#M559776</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 can write select statment like this and move into four different itab's .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from &amp;lt;databasetable&amp;gt; into &amp;lt;itab&amp;gt; upto 25 000 rows where condition.&lt;/P&gt;&lt;P&gt;and second one is..&lt;/P&gt;&lt;P&gt;select * from &amp;lt;databasetable&amp;gt; into &amp;lt;itab&amp;gt; where keyfield &amp;lt;b&amp;gt;ge&amp;lt;/b&amp;gt; '25000' and keyfield &amp;lt;b&amp;gt;le&amp;lt;/b&amp;gt; '50000'.&lt;/P&gt;&lt;P&gt;like this u can write for third and fourth.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if useful,&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:50:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483243#M559776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: parallel processing of database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483244#M559777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt; i have to update in a single internal table. do anyone have idea about that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 07:02:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483244#M559777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T07:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: parallel processing of database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483245#M559778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are saying that u have an internal table containing a lakh records, and u want to distribute it into four internal tables(having the same structure of course)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 11:23:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483245#M559778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T11:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: parallel processing of database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483246#M559779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take a read through SAP's program RUTBTPA0  - particularly the example code towards the bottom, and the comments which describes its use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* Your program is suited for parallelization, if:
*   it determines a list of objects
*   and then loops over this list doing some function for each object
* Then you can start tasks in parallel each working on a subset
* of objects and finally merging the results of these tasks.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 23:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483246#M559779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T23:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: parallel processing of database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483247#M559780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi tripat,&lt;/P&gt;&lt;P&gt; i saying that we are getting lakhs of record for the condition we are using.for that we have to check whether it is greater than lakh we have to divide it by 4 and access it with on internal table by processing 25000 at the same time it has to process from next record in the same internal table..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 04:24:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-of-database/m-p/2483247#M559780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T04:24:40Z</dc:date>
    </item>
  </channel>
</rss>

