<?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: Commit every... with existing connection in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246488#M31992</link>
    <description>&lt;P&gt;Hi guys,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Could you please help me with this??&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have 495 records in input when I try to run the job it inserts only 400 records if i keep the expression&lt;/P&gt; 
&lt;P&gt;Numeric.Sequence("S1",1,1)%100==0 in advanced mode of tFilterRow.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;SELECT COUNT(1) FROM TEMP ---&amp;gt; 400&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;May I know why and how to insert the other 95 records?&lt;/P&gt; 
&lt;P&gt;PFA screenshot for reference&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks in advance&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LsNN"&gt;1.PNG&lt;/A&gt;</description>
    <pubDate>Fri, 27 Jul 2018 11:51:22 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-07-27T11:51:22Z</dc:date>
    <item>
      <title>Commit every... with existing connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246480#M31984</link>
      <description>I am trying to load data into oracle using TOS 2.3.3.&lt;BR /&gt;1) I have main connection that goes from my file to tOracleOutput.&lt;BR /&gt;2) I use the existing connection.&lt;BR /&gt;3) I want to commit every 10000 rows.&lt;BR /&gt;Is there a way to implement this kind of load in Talend?&lt;BR /&gt;I understand that I can do it if I don't use existing connection (there is a Commit Every... field on the Advanced Settings tab, but it disappears when I switch to "use existing connection"). Why can't I do it with the existing connection? Is there a reason or am I missing something?</description>
      <pubDate>Sat, 16 Nov 2024 14:22:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246480#M31984</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2024-11-16T14:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Commit every... with existing connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246481#M31985</link>
      <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;Why can't I do it with the existing connection? Is there a reason or am I missing something?&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;It's a design choice from us the developers. tOracleConnection/tOracleCommit/tOracleRollback where designed so that user can control the transactions.
&lt;BR /&gt;Workaround:
&lt;BR /&gt;tFileInputDelimited --row--&amp;gt; tOracleOutput --row--&amp;gt; tFilterRow --row--&amp;gt; tOracleCommit
&lt;BR /&gt;in the tFilterRow, advanced mode:
&lt;BR /&gt;
&lt;PRE&gt;sequence('abcd', 1, 1) % 10_000 == 0&lt;/PRE&gt;
&lt;BR /&gt;Don't forget to add a tOracleCommit after the subjob, so that last lines are commited.
&lt;BR /&gt;May I ask you to add a feature request "add a commit every in t*Commit"? I think it would be much more user friendly than the tip I just gave you.</description>
      <pubDate>Wed, 14 May 2008 23:15:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246481#M31985</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-05-14T23:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Commit every... with existing connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246482#M31986</link>
      <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;Why can't I do it with the existing connection? Is there a reason or am I missing something?&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;It's a design choice from us the developers. tOracleConnection/tOracleCommit/tOracleRollback where designed so that user can control the transactions.
&lt;BR /&gt;Workaround:
&lt;BR /&gt;tFileInputDelimited --row--&amp;gt; tOracleOutput --row--&amp;gt; tFilterRow --row--&amp;gt; tOracleCommit
&lt;BR /&gt;in the tFilterRow, advanced mode:
&lt;BR /&gt;
&lt;PRE&gt;sequence('abcd', 1, 1) % 10_000 == 0&lt;/PRE&gt;
&lt;BR /&gt;Don't forget to add a tOracleCommit after the subjob, so that last lines are commited.
&lt;BR /&gt;May I ask you to add a feature request "add a commit every in t*Commit"? I think it would be much more user friendly than the tip I just gave you.
&lt;BR /&gt;Excellent! I will use this trick for now and wait for the new feature.
&lt;BR /&gt;Submitted 3797</description>
      <pubDate>Thu, 15 May 2008 14:46:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246482#M31986</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2008-05-15T14:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Commit every... with existing connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246483#M31987</link>
      <description>How to perform such trick with java tFilterRow?</description>
      <pubDate>Thu, 01 Dec 2011 10:26:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246483#M31987</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T10:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Commit every... with existing connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246484#M31988</link>
      <description>Hi,&lt;BR /&gt;In tFilterRow, Advanced:&lt;BR /&gt;Numeric.sequence("abcd", 1, 1) % 500 == 0&lt;BR /&gt;Kind regards,&lt;BR /&gt;Yves</description>
      <pubDate>Thu, 01 Dec 2011 14:00:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246484#M31988</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2011-12-01T14:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Commit every... with existing connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246485#M31989</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Numeric.sequence("abcd", 1, 1) % 500 == 0&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;It works.&lt;BR /&gt;Thank you very much!</description>
      <pubDate>Fri, 02 Dec 2011 04:23:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246485#M31989</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-02T04:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Commit every... with existing connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246486#M31990</link>
      <description>what is "abcd"?</description>
      <pubDate>Wed, 21 Mar 2012 08:45:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246486#M31990</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-21T08:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Commit every... with existing connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246487#M31991</link>
      <description>The first 4 letters of the alphabet.&lt;BR /&gt;Actually it's the sequence reference name.</description>
      <pubDate>Wed, 21 Mar 2012 09:07:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246487#M31991</guid>
      <dc:creator>janhess</dc:creator>
      <dc:date>2012-03-21T09:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: Commit every... with existing connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246488#M31992</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Could you please help me with this??&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have 495 records in input when I try to run the job it inserts only 400 records if i keep the expression&lt;/P&gt; 
&lt;P&gt;Numeric.Sequence("S1",1,1)%100==0 in advanced mode of tFilterRow.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;SELECT COUNT(1) FROM TEMP ---&amp;gt; 400&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;May I know why and how to insert the other 95 records?&lt;/P&gt; 
&lt;P&gt;PFA screenshot for reference&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks in advance&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LsNN"&gt;1.PNG&lt;/A&gt;</description>
      <pubDate>Fri, 27 Jul 2018 11:51:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246488#M31992</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-27T11:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Commit every... with existing connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246489#M31993</link>
      <description>&lt;P&gt;Hi Kiran,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Did you find the solution for&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;"I have 495 records in input when I try to run the job it inserts only 400 records if i keep the expression&lt;/P&gt; 
&lt;P&gt;Numeric.Sequence("S1",1,1)%100==0 in advanced mode of tFilterRow."&lt;/P&gt; 
&lt;P&gt;Even I am facing the same issue, If you find the solution please share.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thank You&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 21:21:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Commit-every-with-existing-connection/m-p/2246489#M31993</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-18T21:21:22Z</dc:date>
    </item>
  </channel>
</rss>

