<?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: tOracleSp - calling an Oracle Package in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315293#M85965</link>
    <description>Hi 
&lt;BR /&gt;I do not speak French, can you translate the error message to English? TABLEAU is custom type defined in your database? 
&lt;BR /&gt;Shong</description>
    <pubDate>Wed, 31 Jul 2013 09:13:42 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-07-31T09:13:42Z</dc:date>
    <item>
      <title>tOracleSp - calling an Oracle Package</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315286#M85958</link>
      <description>Hi, 
&lt;BR /&gt;I need to run the following package from Talend: 
&lt;BR /&gt;BEGIN 
&lt;BR /&gt; IO_ERRMSG := NULL; 
&lt;BR /&gt; IO_ERRNO := NULL; 
&lt;BR /&gt; I_CATEGORY_ID := 129; 
&lt;BR /&gt; I_CHARGE_ACC_SEG5 := '6500'; 
&lt;BR /&gt; I_DEBUG_FLAG := 'Y'; 
&lt;BR /&gt; APPS.VRTX_VICI_ORDER_INTF_PKG.MAIN_PROCESS ( IO_ERRMSG, IO_ERRNO, I_CATEGORY_ID, I_CHARGE_ACC_SEG5, I_DEBUG_FLAG ); 
&lt;BR /&gt; COMMIT; 
&lt;BR /&gt;END; 
&lt;BR /&gt;What is the best way to do this? 
&lt;BR /&gt;I tried the following, but am getting a lot of different errors, and it does not look like I am using a correct approach: 
&lt;BR /&gt;tOracleInput --&amp;gt; tMap --&amp;gt; tOracleSP 
&lt;BR /&gt;tOracleInput has select 1 from dual 
&lt;BR /&gt;in tMap I define the 5paramaters that are needed, and pass to tOracleSP. 
&lt;BR /&gt;The latest errors I am getting is "Parameter schema is different from query" on tOracleInput, and PLS-00221: 'VRTX_VICI_ORDER_INTF_PKG' is not a procedure or is undefined 
&lt;BR /&gt;ORA-06550: line 1, column 7: 
&lt;BR /&gt;What should I have in tOracleSP, in SP Name, just the oracle package name???? 
&lt;BR /&gt;Anyway, please let me know how to get this to work. 
&lt;BR /&gt;Thanks, 
&lt;BR /&gt;Boris</description>
      <pubDate>Sat, 16 Nov 2024 13:30:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315286#M85958</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleSp - calling an Oracle Package</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315287#M85959</link>
      <description>Hello 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;What should I have in tOracleSP, in SP Name, just the oracle package name????&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;It should be packageName.procedureName. Here is an example: 
&lt;BR /&gt;create or replace package person_package is 
&lt;BR /&gt;procedure add_person(id number, name varchar2, age number); 
&lt;BR /&gt;end person_package; 
&lt;BR /&gt;create or replace 
&lt;BR /&gt;package body person_package is 
&lt;BR /&gt;procedure add_person(id number, name varchar2, age number) 
&lt;BR /&gt;is 
&lt;BR /&gt;begin 
&lt;BR /&gt;insert into person values(id,name,age); 
&lt;BR /&gt;end; 
&lt;BR /&gt;end person_package; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Mon, 15 Mar 2010 03:31:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315287#M85959</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-15T03:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleSp - calling an Oracle Package</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315288#M85960</link>
      <description>Shong, 
&lt;BR /&gt;Thanks, that worked. 
&lt;BR /&gt;The only thing is: My proc returns a 'Yes' or 'No' value based on Input parameters, and no matter what I put in for default value in tOracleInput and then sync columns, I keep getting the same value for my out parameter. 
&lt;BR /&gt;When I run the proc manually it works fine. 
&lt;BR /&gt;Is there something else I need to change in order to have it return different values based on what I pass as input? 
&lt;BR /&gt;Thanks, 
&lt;BR /&gt;Boris</description>
      <pubDate>Mon, 15 Mar 2010 16:13:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315288#M85960</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-15T16:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleSp - calling an Oracle Package</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315289#M85961</link>
      <description>Hello 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;and no matter what I put in for default value in tOracleInput and then sync columns, I keep getting the same value for my out parameter.&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Add a new column on tOracleSP component and set it as out parameter. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Tue, 16 Mar 2010 03:13:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315289#M85961</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-16T03:13:51Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleSp - calling an Oracle Package</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315290#M85962</link>
      <description>Hello, 
&lt;BR /&gt;I am using tOracleSP to execute the stored procedure with the required parameters below: 
&lt;BR /&gt; 
&lt;PRE&gt;create or replace PACKAGE BODY INSERTREF_PKG&lt;BR /&gt;AS&lt;BR /&gt;PROCEDURE INSERTREF&lt;BR /&gt;(&lt;BR /&gt;	var1		IN VARCHAR2,&lt;BR /&gt; 	var2   	IN TIMESTAMP,&lt;BR /&gt; 	var3 		IN TABLEAU&lt;BR /&gt;)&lt;BR /&gt;........&lt;/PRE&gt; 
&lt;BR /&gt;where TABLEAU is an array of String. 
&lt;BR /&gt;Can you please tell me how to pass array parameter to a strore procedure? 
&lt;BR /&gt;Regards. 
&lt;BR /&gt;Jruf</description>
      <pubDate>Mon, 29 Jul 2013 09:54:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315290#M85962</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-29T09:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleSp - calling an Oracle Package</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315291#M85963</link>
      <description>Hi Jruf 
&lt;BR /&gt;Define the column type as object to map the complex type of SP parameters, I upload some screenshots to show how to pass a array type as input parameter. 
&lt;BR /&gt;Let me know if it works. 
&lt;BR /&gt;Shong 
&lt;BR /&gt; 
&lt;IMG src="https://community.talend.com/legacyfs/online/membersTempo/674/114253_1.png" /&gt; 
&lt;IMG src="https://community.talend.com/legacyfs/online/membersTempo/674/114253_2.png" /&gt; 
&lt;IMG src="https://community.talend.com/legacyfs/online/membersTempo/674/114253_3.png" /&gt;</description>
      <pubDate>Tue, 30 Jul 2013 11:48:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315291#M85963</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-30T11:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleSp - calling an Oracle Package</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315292#M85964</link>
      <description>Hi Shong, 
&lt;BR /&gt;It's not working yet. I have got an error. these are the screeshots. 
&lt;BR /&gt;Regards 
&lt;BR /&gt;Jruf 
&lt;BR /&gt; 
&lt;IMG src="https://community.talend.com/legacyfs/online/membersTempo/87892/114268_erreur.jpg" /&gt; 
&lt;IMG src="https://community.talend.com/legacyfs/online/membersTempo/87892/114268_oracle.jpg" /&gt; 
&lt;IMG src="https://community.talend.com/legacyfs/online/membersTempo/87892/114268_tfixed.jpg" /&gt; 
&lt;IMG src="https://community.talend.com/legacyfs/online/membersTempo/87892/114268_tjava.jpg" /&gt;</description>
      <pubDate>Tue, 30 Jul 2013 13:42:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315292#M85964</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-30T13:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleSp - calling an Oracle Package</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315293#M85965</link>
      <description>Hi 
&lt;BR /&gt;I do not speak French, can you translate the error message to English? TABLEAU is custom type defined in your database? 
&lt;BR /&gt;Shong</description>
      <pubDate>Wed, 31 Jul 2013 09:13:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315293#M85965</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-31T09:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleSp - calling an Oracle Package</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315294#M85966</link>
      <description>HI,
&lt;BR /&gt;Tableau is ARRAY in english version. it is the built-in custom type.
&lt;BR /&gt;java.Sql.Exception :Invalid column type
&lt;BR /&gt;Jruf</description>
      <pubDate>Wed, 31 Jul 2013 09:22:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315294#M85966</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-31T09:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleSp - calling an Oracle Package</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315295#M85967</link>
      <description>&lt;P&gt;I have the same problem, there is a solution for this problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;THX&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2019 16:00:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315295#M85967</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-07T16:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleSp - calling an Oracle Package</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315296#M85968</link>
      <description>&lt;P&gt;Hello &lt;A href="https://community.qlik.com/s/profile/0053p000007LQUjAAO"&gt;@dmutu&lt;/A&gt;,&lt;/P&gt; 
&lt;P&gt;It's a quite old thread. Could you please give us a more bit information about your job design and problem? Screenshots will be preferred.&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 08:10:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleSp-calling-an-Oracle-Package/m-p/2315296#M85968</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-08T08:10:34Z</dc:date>
    </item>
  </channel>
</rss>

