<?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: tOracleOutputBulkExec - how to use the Advanced Setting &amp;quot;Output&amp;quot; To Global Variable in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tOracleOutputBulkExec-how-to-use-the-Advanced-Setting-quot/m-p/2283047#M57054</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;When you use a tOracleOutputBulkExec component, you only see the ERROR_MESSAGE&lt;/P&gt; 
&lt;P&gt;globalMap option. To display the global variables, configure the &lt;STRONG&gt;tJava&lt;/STRONG&gt; component using the following statements.&lt;/P&gt; 
&lt;PRE&gt;System.out.println("Return Code: " + globalMap.get("tOracleOutputBulkExec_1_tOBE_RETURN_CODE"));
System.out.println("Number of line data: " + globalMap.get("tOracleOutputBulkExec_1_tOBE_NB_LINE_DATA"));
System.out.println("Number of bad line: " + globalMap.get("tOracleOutputBulkExec_1_tOBE_NB_LINE_BAD"));
System.out.println("Number of inserted line: " + globalMap.get("tOracleOutputBulkExec_1_tOBE_NB_LINE_INSERTED"));
&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;Let us know if it works for you.&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
    <pubDate>Fri, 26 Apr 2019 06:36:32 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-04-26T06:36:32Z</dc:date>
    <item>
      <title>tOracleOutputBulkExec - how to use the Advanced Setting "Output" To Global Variable</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleOutputBulkExec-how-to-use-the-Advanced-Setting-quot/m-p/2283046#M57053</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone pls tell me whats and how to use the Output - To Global Variable in the tOracleOutputBulkExec component ?&lt;/P&gt;&lt;P&gt;will this output contains the no of records inserted in the DB and if so how can i retreive this value ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 05:59:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleOutputBulkExec-how-to-use-the-Advanced-Setting-quot/m-p/2283046#M57053</guid>
      <dc:creator>vidya821</dc:creator>
      <dc:date>2024-11-16T05:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleOutputBulkExec - how to use the Advanced Setting "Output" To Global Variable</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleOutputBulkExec-how-to-use-the-Advanced-Setting-quot/m-p/2283047#M57054</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;When you use a tOracleOutputBulkExec component, you only see the ERROR_MESSAGE&lt;/P&gt; 
&lt;P&gt;globalMap option. To display the global variables, configure the &lt;STRONG&gt;tJava&lt;/STRONG&gt; component using the following statements.&lt;/P&gt; 
&lt;PRE&gt;System.out.println("Return Code: " + globalMap.get("tOracleOutputBulkExec_1_tOBE_RETURN_CODE"));
System.out.println("Number of line data: " + globalMap.get("tOracleOutputBulkExec_1_tOBE_NB_LINE_DATA"));
System.out.println("Number of bad line: " + globalMap.get("tOracleOutputBulkExec_1_tOBE_NB_LINE_BAD"));
System.out.println("Number of inserted line: " + globalMap.get("tOracleOutputBulkExec_1_tOBE_NB_LINE_INSERTED"));
&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;Let us know if it works for you.&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2019 06:36:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleOutputBulkExec-how-to-use-the-Advanced-Setting-quot/m-p/2283047#M57054</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-26T06:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleOutputBulkExec - how to use the Advanced Setting "Output" To Global Variable</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleOutputBulkExec-how-to-use-the-Advanced-Setting-quot/m-p/2283048#M57055</link>
      <description>It does work..but instead of tOracle it shud be tDB
&lt;BR /&gt;System.out.println("Number of inserted line: " + globalMap.get("tDBOutputBulkExec_1_tOBE_NB_LINE_INSERTED"));
&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 26 Apr 2019 06:47:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleOutputBulkExec-how-to-use-the-Advanced-Setting-quot/m-p/2283048#M57055</guid>
      <dc:creator>vidya821</dc:creator>
      <dc:date>2019-04-26T06:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleOutputBulkExec - how to use the Advanced Setting "Output" To Global Variable</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleOutputBulkExec-how-to-use-the-Advanced-Setting-quot/m-p/2283049#M57056</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;HR /&gt; 
 &lt;A href="https://community.qlik.com/s/profile/0053p000007LM5AAAW"&gt;@vidya821&lt;/A&gt;&amp;nbsp;wrote: 
 &lt;BR /&gt;It does work..but instead of tOracle it shud be tDB 
 &lt;BR /&gt;System.out.println("Number of inserted line: " + globalMap.get("tDBOutputBulkExec_1_tOBE_NB_LINE_INSERTED")); 
 &lt;BR /&gt;Thanks 
 &lt;HR /&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;P&gt;Great it works. Thanks for your correct.&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2019 06:50:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleOutputBulkExec-how-to-use-the-Advanced-Setting-quot/m-p/2283049#M57056</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-26T06:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleOutputBulkExec - how to use the Advanced Setting "Output" To Global Variable</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleOutputBulkExec-how-to-use-the-Advanced-Setting-quot/m-p/2283050#M57057</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/00539000004XsaeAAC"&gt;@xdshi&lt;/A&gt;, Facing a new issue, the variable works fine when we run the job in studio however when we execute the same via TAC then it fetches null value.&lt;/P&gt; 
&lt;P&gt;Any idea or leads ?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 11:33:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleOutputBulkExec-how-to-use-the-Advanced-Setting-quot/m-p/2283050#M57057</guid>
      <dc:creator>vidya821</dc:creator>
      <dc:date>2019-05-22T11:33:02Z</dc:date>
    </item>
  </channel>
</rss>

