<?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: passing out parameters to tOracleSP in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209801#M8476</link>
    <description>Hi Rizz 
&lt;BR /&gt;Currently, Talend doesn't return user-defined type as the out type. Can you report this feature on our bugtracker? 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; shong</description>
    <pubDate>Tue, 29 Jan 2008 02:54:58 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-01-29T02:54:58Z</dc:date>
    <item>
      <title>passing out parameters to tOracleSP</title>
      <link>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209794#M8469</link>
      <description>How do define out parameter for tOracleSP .. My stored proc return a curzor back so i need to pass a out parameter of type cursor to the stored proc..Could not find any info in the user guide
&lt;BR /&gt;Thanks
&lt;BR /&gt;rizz</description>
      <pubDate>Sat, 16 Nov 2024 14:28:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209794#M8469</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2024-11-16T14:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: passing out parameters to tOracleSP</title>
      <link>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209795#M8470</link>
      <description>Anybody ???????????????</description>
      <pubDate>Mon, 28 Jan 2008 07:39:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209795#M8470</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2008-01-28T07:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: passing out parameters to tOracleSP</title>
      <link>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209796#M8471</link>
      <description>Hi 
&lt;BR /&gt;When defining the schema of tOracleSP, Add a column for out parameter and select 'out' as the parameter type.(see the screenshot) 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; shong</description>
      <pubDate>Mon, 28 Jan 2008 08:24:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209796#M8471</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-28T08:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: passing out parameters to tOracleSP</title>
      <link>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209797#M8472</link>
      <description>No it does not work .Please see my stored proc code after the exception. 
&lt;BR /&gt;java.sql.SQLException: ORA-06550: line 1, column 7: 
&lt;BR /&gt;PLS-00306: wrong number or types of arguments in call to 'REFGETUNPROCESSESEVENTS' 
&lt;BR /&gt;ORA-06550: line 1, column 7: 
&lt;BR /&gt;PL/SQL: Statement ignored 
&lt;BR /&gt; at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125) 
&lt;BR /&gt; at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:305) 
&lt;BR /&gt; at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:272) 
&lt;BR /&gt; at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:623) 
&lt;BR /&gt; at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:180) 
&lt;BR /&gt; at oracle.jdbc.driver.T4CCallableStatement.execute_for_rows(T4CCallableStatement.java:783) 
&lt;BR /&gt; at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1028) 
&lt;BR /&gt; at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2888) 
&lt;BR /&gt; at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:2979) 
&lt;BR /&gt; at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4103) 
&lt;BR /&gt; at batch.newjob.newjob.tOracleSP_1Process(newjob.java:169) 
&lt;BR /&gt; at batch.newjob.newjob.runJob(newjob.java:331) 
&lt;BR /&gt; at batch.newjob.newjob.main(newjob.java:267) 
&lt;BR /&gt;Job newjob ended at 17:15 28/01/2008. 
&lt;BR /&gt; 
&lt;BR /&gt;This is my stored proc ::: 
&lt;BR /&gt;Procedure refGetUnProcessesEvents(P_RETURN_QRY1 OUT SYS_REFCURSOR) 
&lt;BR /&gt;IS 
&lt;BR /&gt;last_event number; 
&lt;BR /&gt;current_max_event number; 
&lt;BR /&gt;Begin 
&lt;BR /&gt;Select Maxevent into last_event from processed_events; 
&lt;BR /&gt;select max(eventid) into current_max_event from update_event; 
&lt;BR /&gt;Open P_RETURN_QRY1 for select distinct entityid as entity_id,entitytype as entity_typ,actiontype as action_type,5 
&lt;BR /&gt;as entity_updated_flag ,entrytimestamp from update_event where eventid&amp;gt;last_event and 
&lt;BR /&gt;eventid&amp;lt;=current_max_event; 
&lt;BR /&gt;update processed_events set Maxevent=current_max_event; 
&lt;BR /&gt;commit; 
&lt;BR /&gt;EXCEPTION 
&lt;BR /&gt; WHEN NO_DATA_FOUND THEN 
&lt;BR /&gt; dbms_output.put_line('No updates found'); 
&lt;BR /&gt; 
&lt;BR /&gt;END refGetUnProcessesEvents;</description>
      <pubDate>Mon, 28 Jan 2008 09:21:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209797#M8472</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2008-01-28T09:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: passing out parameters to tOracleSP</title>
      <link>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209798#M8473</link>
      <description>Hi Shong ... any updates on how to use??</description>
      <pubDate>Mon, 28 Jan 2008 10:05:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209798#M8473</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2008-01-28T10:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: passing out parameters to tOracleSP</title>
      <link>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209799#M8474</link>
      <description>Hi Shong ... any updates on how to use??</description>
      <pubDate>Mon, 28 Jan 2008 10:06:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209799#M8474</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2008-01-28T10:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: passing out parameters to tOracleSP</title>
      <link>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209800#M8475</link>
      <description>Is this feature not supported by Talend ??..Can anybody help me ??</description>
      <pubDate>Tue, 29 Jan 2008 01:26:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209800#M8475</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2008-01-29T01:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: passing out parameters to tOracleSP</title>
      <link>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209801#M8476</link>
      <description>Hi Rizz 
&lt;BR /&gt;Currently, Talend doesn't return user-defined type as the out type. Can you report this feature on our bugtracker? 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; shong</description>
      <pubDate>Tue, 29 Jan 2008 02:54:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209801#M8476</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-29T02:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: passing out parameters to tOracleSP</title>
      <link>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209802#M8477</link>
      <description>Set your column as Object type and use the tParseRecordSet to parse your results.</description>
      <pubDate>Tue, 29 Jan 2008 11:03:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209802#M8477</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-29T11:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: passing out parameters to tOracleSP</title>
      <link>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209803#M8478</link>
      <description>where do i find this component.Iam using TOS 2.2.4.I could not find this</description>
      <pubDate>Fri, 01 Feb 2008 10:18:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209803#M8478</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2008-02-01T10:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: passing out parameters to tOracleSP</title>
      <link>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209804#M8479</link>
      <description>I's only available since 2.3.0M1 in Databases Family (near the tCreateTable) in Java project (see &lt;A href="http://talendforge.org/components/" target="_blank" rel="nofollow noopener noreferrer"&gt;components&lt;/A&gt; page)&lt;BR /&gt;Regards,</description>
      <pubDate>Fri, 01 Feb 2008 18:01:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/passing-out-parameters-to-tOracleSP/m-p/2209804#M8479</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-01T18:01:04Z</dc:date>
    </item>
  </channel>
</rss>

