<?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: How to use the same tOracleConnection in the subjobs ? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286014#M59636</link>
    <description>I have the same issue with Oracle. Your note says " leave parameters blank". I tried using "" and " ". But, I get message: 
&lt;BR /&gt;Exception in component tOracleConnection_1 
&lt;BR /&gt;java.sql.SQLException: Invalid number format for port number 
&lt;BR /&gt;If I leave box blank, the job won't generate. It says required fields are missing.</description>
    <pubDate>Thu, 19 Dec 2013 20:40:25 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-12-19T20:40:25Z</dc:date>
    <item>
      <title>How to use the same tOracleConnection in the subjobs ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286012#M59634</link>
      <description>Hello Admins , &lt;BR /&gt;Any Idea How to use the same Oracle Connection between different Jobs ? &lt;BR /&gt;the checkbox in tOracleOutput dosent work in this case,&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;tOracleConnection ----onSubJobOk------&amp;gt; tRunJob1 --------&amp;gt; tRunJob2&lt;BR /&gt;I want to use the same Oracle connection in jobs (1 and 2) how to manage it  ?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance &lt;BR /&gt;Joseph</description>
      <pubDate>Wed, 26 Sep 2012 14:30:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286012#M59634</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2012-09-26T14:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the same tOracleConnection in the subjobs ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286013#M59635</link>
      <description>Hi, Chaficc 
&lt;BR /&gt;We have designed a job for your requirement. Call the 1st job as parent job and the 2nd as child job. 
&lt;BR /&gt;Parent job: see pic1 
&lt;BR /&gt;1. On tMysqlConnection_1: create a Mysql DB connection; select the Use or register a shared DB connection box to register a shared DB connection and type in a connection name in the Shared DB connection Name field, for example "Conn".(pic2) 
&lt;BR /&gt;2. On tFixedFlowInput_1: generate a set of test data.(pic3) 
&lt;BR /&gt;3. On tMysqlOutput_1: insert the data into a table called "person"; select the Use an existing connection box to use an existing connection created on tMysqlConnection_1; select Drop table if exists and create item from the Action on table list, this means the Job will create the table if it doesn't exist, drop the table if it already exists and create it again. (pic4) 
&lt;BR /&gt;4. On tRunJob_1: call the 'ChildJob' Job.(pic5) 
&lt;BR /&gt;5. On tMysqlCommit: commit the changes if the Job works fine and close the DB connection. 
&lt;BR /&gt;6. On tMysqlRollback: Rollback the changes if the Job fails and close the DB connection. 
&lt;BR /&gt;Child job(pic6) 
&lt;BR /&gt;1. On tMysqlConnection_1: select the Use or register a shared DB connection box to use a shared DB connection and type in the connection name "Conn", which is defined in ParentJob Job, in the Shared DB connection Name field. We don't need to set the DB connection parameters like Host on this component, allow them to be empty, as the component will use a shared DB connection.?pic7? 
&lt;BR /&gt;2. On tMysqlInput_1: read data from "person" table. 
&lt;BR /&gt;3. On tLogRow_1: print the data on the console. 
&lt;BR /&gt; 
&lt;BR /&gt;Best Regards 
&lt;BR /&gt;Sabrina</description>
      <pubDate>Thu, 27 Sep 2012 09:22:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286013#M59635</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-27T09:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the same tOracleConnection in the subjobs ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286014#M59636</link>
      <description>I have the same issue with Oracle. Your note says " leave parameters blank". I tried using "" and " ". But, I get message: 
&lt;BR /&gt;Exception in component tOracleConnection_1 
&lt;BR /&gt;java.sql.SQLException: Invalid number format for port number 
&lt;BR /&gt;If I leave box blank, the job won't generate. It says required fields are missing.</description>
      <pubDate>Thu, 19 Dec 2013 20:40:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286014#M59636</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-19T20:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the same tOracleConnection in the subjobs ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286015#M59637</link>
      <description>Hi, 
&lt;BR /&gt;Did you create a t&amp;lt;DB&amp;gt;connection in Parent job with information? Please paste your job design screenshots into forum so that we can address your issue quickly.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Sabrina</description>
      <pubDate>Fri, 20 Dec 2013 03:18:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286015#M59637</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-20T03:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the same tOracleConnection in the subjobs ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286016#M59638</link>
      <description>I am using Talend for MDM version 5.2.2. MY job calls 9 subjobs. I cut the image from the calling job SC_Data_load_1 and one of the called jobs Stage_R3_KNA1_ALL. 
&lt;BR /&gt;I didn't see the images. I am editing to try again.</description>
      <pubDate>Fri, 20 Dec 2013 13:58:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286016#M59638</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-20T13:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the same tOracleConnection in the subjobs ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286017#M59639</link>
      <description>Hi Sabrina,
&lt;BR /&gt;
&lt;BR /&gt;I have a small question on the subjob. So if we call "Use or register a shared DB connection" for multiple subjobs. Will it open a single DB connection for multiple jobs or will it open multiple connections for multiple subjobs in DB
&lt;BR /&gt;Thanks,
&lt;BR /&gt;Ganesh</description>
      <pubDate>Fri, 23 May 2014 17:23:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286017#M59639</guid>
      <dc:creator>G_</dc:creator>
      <dc:date>2014-05-23T17:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the same tOracleConnection in the subjobs ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286018#M59640</link>
      <description>Hi Sabrina,&lt;BR /&gt;Can you please send me the pics of the jobs (parent &amp;amp; child) ?&lt;BR /&gt;Thank you&lt;BR /&gt;Abdellah</description>
      <pubDate>Wed, 13 Jan 2016 10:08:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286018#M59640</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2016-01-13T10:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the same tOracleConnection in the subjobs ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286019#M59641</link>
      <description>Hi Abdellah, 
&lt;BR /&gt;Please take a look at this KB article about: 
&lt;A href="https://help.talend.com/search/all?query=Sharing+database+connection+between+parent+job+and+child+job&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M9p6.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134116iFBD5D7F21624A744/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M9p6.png" alt="0683p000009M9p6.png" /&gt;&lt;/span&gt;haring database connection between parent job and child job&lt;/A&gt; 
&lt;BR /&gt;Let us know if it is Ok with you. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina</description>
      <pubDate>Thu, 14 Jan 2016 03:23:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-use-the-same-tOracleConnection-in-the-subjobs/m-p/2286019#M59641</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-14T03:23:58Z</dc:date>
    </item>
  </channel>
</rss>

