<?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: setup a job that reads RECORD TYPE variable from a Oracle Stored Procedure in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232002#M22111</link>
    <description>&lt;P&gt;this is the complete work flow and as you can see tParseRecordSet is erroring.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="job.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtxI.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/139813iA188189E2F7C46A6/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtxI.jpg" alt="0683p000009LtxI.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="job-params.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtxN.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156364i49A3AC05FA67F7C2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtxN.jpg" alt="0683p000009LtxN.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="toraclesp.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtxS.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/137476iCD5E5492EFE98E25/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtxS.jpg" alt="0683p000009LtxS.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tparserecordset.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtxT.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142377i8AC746ECEBF562EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtxT.jpg" alt="0683p000009LtxT.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 27 Apr 2017 16:08:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-04-27T16:08:29Z</dc:date>
    <item>
      <title>setup a job that reads RECORD TYPE variable from a Oracle Stored Procedure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2231998#M22107</link>
      <description>&lt;P&gt;I am looking for an example&amp;nbsp;to setup a job that&amp;nbsp;reads RECORD TYPE variable from a Oracle Stored Procedure. my stored procedure looks something like this. I will really appreciate any help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;create or replace package testpkg as
    --
    type test_rec is record (
        pid               number,
        pname             varchar2(30)
    );
    --
    procedure main (
        p_id                in varchar2 := null,
        p_admin_status      in varchar2 := null,
        p_return_rec        out test_rec
    );
end;
/
create or replace package body testpkg as
    --
    procedure main (
        p_id                in varchar2 := null,
        p_admin_status      in varchar2 := null,
        p_return_rec        out test_rec
    )
    is
    begin
      --
      p_return_rec.pid   := 1;
      p_return_rec.pname := 'John Doe';
      --
    end;
    --
end;&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 Apr 2017 23:03:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2231998#M22107</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-25T23:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: setup a job that reads RECORD TYPE variable from a Oracle Stored Procedure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2231999#M22108</link>
      <description>&lt;P&gt;Hi mhyder&lt;BR /&gt;Please take a look at this KB article about how to call a stored procedure or function in a Job. In your case, you need to define one column with Object type on the schema of tOracleSP, and select Type as 'Record SET' in the Parameter list, use a tParseRecordSet component to parse the record set after tOracleSP.&lt;BR /&gt;&lt;A href="https://help.talend.com/pages/viewpage.action?pageId=190513258" target="_blank" rel="nofollow noopener noreferrer"&gt;https://help.talend.com/pages/viewpage.action?pageId=190513258&lt;/A&gt;&lt;BR /&gt;let me know if it works.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Shong&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2017 09:32:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2231999#M22108</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-26T09:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: setup a job that reads RECORD TYPE variable from a Oracle Stored Procedure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232000#M22109</link>
      <description>&lt;P&gt;Shong,&amp;nbsp;&lt;BR /&gt;Thank you for your reply.&amp;nbsp;I pretty much followed the steps you detail. but i am still missing something.&lt;/P&gt;
&lt;P&gt;How do i upload screen shots to this discussion ?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2017 18:03:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232000#M22109</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-26T18:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: setup a job that reads RECORD TYPE variable from a Oracle Stored Procedure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232001#M22110</link>
      <description>&lt;P&gt;Hi &lt;BR /&gt;You can insert images from your computer (this uploads the image to your gallery), from your image gallery (if the image has been approved), or from another location on the web.&lt;BR /&gt;&lt;BR /&gt;To insert an image in a post:&lt;BR /&gt;1. Start a new post.&lt;BR /&gt;2. Click Insert Image in the editor tool bar.&lt;BR /&gt;3. Choose one of the image source options and follow the on-screen instructions.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Shong&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2017 06:11:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232001#M22110</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-27T06:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: setup a job that reads RECORD TYPE variable from a Oracle Stored Procedure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232002#M22111</link>
      <description>&lt;P&gt;this is the complete work flow and as you can see tParseRecordSet is erroring.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="job.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtxI.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/139813iA188189E2F7C46A6/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtxI.jpg" alt="0683p000009LtxI.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="job-params.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtxN.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156364i49A3AC05FA67F7C2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtxN.jpg" alt="0683p000009LtxN.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="toraclesp.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtxS.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/137476iCD5E5492EFE98E25/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtxS.jpg" alt="0683p000009LtxS.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tparserecordset.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtxT.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142377i8AC746ECEBF562EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtxT.jpg" alt="0683p000009LtxT.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2017 16:08:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232002#M22111</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-27T16:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: setup a job that reads RECORD TYPE variable from a Oracle Stored Procedure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232003#M22112</link>
      <description>Hi 
&lt;BR /&gt;It seems you don't configure tParseRecordset correctly. Can you upload a screenshot of basic settings of tParseRecordset? 
&lt;BR /&gt; 
&lt;BR /&gt;Regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 28 Apr 2017 04:44:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232003#M22112</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-28T04:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: setup a job that reads RECORD TYPE variable from a Oracle Stored Procedure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232004#M22113</link>
      <description>&lt;P&gt;Shong,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;this is what i have for basic setting for tParseRecordSet&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tparserecordset1.jpg" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtsA.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/141808iDED2F5169BE9BB19/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtsA.jpg" alt="0683p000009LtsA.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2017 17:01:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232004#M22113</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-28T17:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: setup a job that reads RECORD TYPE variable from a Oracle Stored Procedure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232005#M22114</link>
      <description>Can you please provide the correct link?&lt;BR /&gt;The given link is not working.</description>
      <pubDate>Wed, 12 Jul 2017 10:11:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/setup-a-job-that-reads-RECORD-TYPE-variable-from-a-Oracle-Stored/m-p/2232005#M22114</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-12T10:11:27Z</dc:date>
    </item>
  </channel>
</rss>

