<?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: Temp Table with informix in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Temp-Table-with-informix/m-p/2284156#M57907</link>
    <description>Hi Vincent, 
&lt;BR /&gt;tXXXRow component does not support this kind of query, you can use tInformixInput component to query the data and then do inner join or left outer join on tMap. 
&lt;BR /&gt; 
&lt;BR /&gt;Regards 
&lt;BR /&gt;Shong</description>
    <pubDate>Tue, 24 Dec 2019 03:35:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-12-24T03:35:36Z</dc:date>
    <item>
      <title>Temp Table with informix</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Temp-Table-with-informix/m-p/2284155#M57906</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;In a "tInformixRow" component I execute this query :&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;FONT size="3"&gt;&lt;EM&gt;&lt;STRONG&gt;select&lt;/STRONG&gt; s_ord_bo.identifiant_appel, s_ord_bo.matricule_appelant,&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;s_ord_bo.code_motif, s_ord_bo.date_ordonnancemen&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;from s_ord_bo where (s_ord_bo.code_motif LIKE '%TS%')&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;&lt;EM&gt;into temp temp1;&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;&lt;STRONG&gt;select&lt;/STRONG&gt; v_appelant.debiteur_inv, v_appelant.nom_prenom_rs,&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;v_appelant.prenom, v_appelant.identifiant&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;from v_appelant&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;&lt;STRONG&gt;into temp temp2&lt;/STRONG&gt;;&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;&lt;STRONG&gt;select&lt;/STRONG&gt; s_motif.identifiant_appel, s_motif.matricule_appelant,&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;s_motif.code_motif, s_motif.code_motif [1,2] motif, s_ref_motif.libelle_motif,&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;v_appel.code_agent, s_motif.mois_chargement,&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;v_appel.code_groupe, v_appel.top_transfert_bo, v_appel.code_nature_contac,&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;s_nat_contact.libelle_nature_con from s_ref_motif, s_motif, v_appel v_appel, s_nat_contact&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;where ((s_motif.code_motif LIKE '%TS%') and (s_motif.mois_chargement = '201812')&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;and (v_appel.code_groupe = 'CIC INT')) and s_ref_motif.code_motif = s_motif.code_motif&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;and s_motif.identifiant_appel = v_appel.identifiant_appel&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;and v_appel.code_nature_contac = s_nat_contact.code_nature_contac&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;&lt;EM&gt;into temp temp3;&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;&lt;EM&gt;select * from temp3, outer temp2&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;where temp2.debiteur_inv = temp3.matricule_appelant&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;EM&gt;into temp temp4;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;the 3 select work, but when i want to re-use the created temporary tables, it does not work, i have :&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;The specified table (temp3) is not in the database.&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;[ERROR]: test_vpol.sous_job_poc_infocentre_national_0_1.Sous_Job_POC_Infocentre_National - tInformixRow_1 - The specified table (temp3) is not in the database.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have the impresssion that the connection with the BDD closes after each sql statement and therefore we lose the temporary tables.&lt;/P&gt; 
&lt;P&gt;I did not find other components to do this job, i even tried the stored procedure but it does not work.&lt;/P&gt; 
&lt;P&gt;I looked in the Talend community and other people have already had this problem but no solution.&lt;/P&gt; 
&lt;P&gt;Is there today a Talend Informix component that can do these kinds of queries ?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;This query works well when i test on the BDD directly.&lt;/P&gt; 
&lt;P&gt;This Informix feature may not be implemented in Talend.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks for your help.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Regards,&lt;/P&gt; 
&lt;P&gt;Vincent&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 09:40:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Temp-Table-with-informix/m-p/2284155#M57906</guid>
      <dc:creator>vincent5</dc:creator>
      <dc:date>2019-12-03T09:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Temp Table with informix</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Temp-Table-with-informix/m-p/2284156#M57907</link>
      <description>Hi Vincent, 
&lt;BR /&gt;tXXXRow component does not support this kind of query, you can use tInformixInput component to query the data and then do inner join or left outer join on tMap. 
&lt;BR /&gt; 
&lt;BR /&gt;Regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Tue, 24 Dec 2019 03:35:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Temp-Table-with-informix/m-p/2284156#M57907</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-24T03:35:36Z</dc:date>
    </item>
  </channel>
</rss>

