<?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: tInformixRow in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310992#M82071</link>
    <description>One problem I found is that when the SQL is created the FROM statement is not picking the table name it sets it to NULL
&lt;BR /&gt;java.sql.ResultSet rs_tInformixInput_1 = stmt_tInformixInput_1
&lt;BR /&gt; .executeQuery("SELECT trans2000.trans_id, trans2000.trans_type FROM null");</description>
    <pubDate>Wed, 23 Sep 2009 18:42:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-09-23T18:42:00Z</dc:date>
    <item>
      <title>tInformixRow</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310988#M82067</link>
      <description>I am currently using TOS to pull data from an informix v7 db into an excel speadsheet. 
&lt;BR /&gt;With basic select query's eg: 
&lt;PRE&gt;SELECT unit FROM unit WHERE scheme = '001';&lt;/PRE&gt; 
&lt;BR /&gt;The tInformixInput Component will perform the task perfectly well. 
&lt;BR /&gt;If for example I need to execute statements on the db before and after a select query eg: 
&lt;BR /&gt; 
&lt;PRE&gt;SELECT unit FROM unit WHERE scheme = '001' INTO TEMP matc1;&lt;BR /&gt;SELECT * FROM matc1;&lt;BR /&gt;DROP table matc1;&lt;/PRE&gt; 
&lt;BR /&gt;The above code will execute fine if I run it as a metadata query (Not as part of a job). 
&lt;BR /&gt;To run the above code in a job I believe I should be breaking the SQL up into 3 parts using tInformixRow for the first and last statments and tInformixInput for the 2nd statment, but I am having no luck getting any kind of tInformixRow statement to run as part of a job: 
&lt;BR /&gt; 
&lt;PRE&gt;Exception in component tInformixRow_1&lt;BR /&gt;java.sql.SQLException: Transactions not supported&lt;BR /&gt;at com.informix.util.IfxErrMsg.getSQLException(IfxErrMsg.java:397)&lt;BR /&gt;at com.informix.jdbc.IfxSqliConnect.setAutoCommit(IfxSqliConnect.java:1858)&lt;BR /&gt;at os_test_1.mat_test_0_1.Mat_test.tInformixRow_1Process(Mat_test.java:199)&lt;BR /&gt;at os_test_1.mat_test_0_1.Mat_test.runJobInTOS(Mat_test.java:386)&lt;BR /&gt;at os_test_1.mat_test_0_1.Mat_test.main(Mat_test.java:295)&lt;/PRE&gt; 
&lt;BR /&gt;I believe tInformixRow just does not seem to be working? 
&lt;BR /&gt;Any help would be very appreciated. 
&lt;BR /&gt;Thanks, 
&lt;BR /&gt;Mat.</description>
      <pubDate>Sat, 16 Nov 2024 13:47:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310988#M82067</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2024-11-16T13:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: tInformixRow</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310989#M82068</link>
      <description>Ok..... I think the problem is the connection closes after every SQL statement, so any temp tables are lost. I need to use a persistant connection, but unformtunately that connector doesn't exist.&lt;BR /&gt;I will submit a feature request.</description>
      <pubDate>Fri, 28 Aug 2009 14:38:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310989#M82068</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2009-08-28T14:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: tInformixRow</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310990#M82069</link>
      <description>I'm also getting errors when trying to get data from Informix, we are running V 7.23. Does anyone know what versions of Informix are supported by Talend Open Studio? 
&lt;BR /&gt;I get the following errors: 
&lt;BR /&gt;Starting job infx01 at 11:14 22/09/2009. 
&lt;BR /&gt;Exception in component tInformixInput_1 
&lt;BR /&gt;java.sql.SQLException: A syntax error has occurred. 
&lt;BR /&gt; at com.informix.util.IfxErrMsg.getSQLException(IfxErrMsg.java:397) 
&lt;BR /&gt; at com.informix.jdbc.IfxSqli.a(IfxSqli.java:3244) 
&lt;BR /&gt; at com.informix.jdbc.IfxSqli.E(IfxSqli.java:3553) 
&lt;BR /&gt; at com.informix.jdbc.IfxSqli.dispatchMsg(IfxSqli.java:2380) 
&lt;BR /&gt; at com.informix.jdbc.IfxSqli.receiveMessage(IfxSqli.java:2295) 
&lt;BR /&gt; at com.informix.jdbc.IfxSqli.executeStatementQuery(IfxSqli.java:1461) 
&lt;BR /&gt; at com.informix.jdbc.IfxSqli.executeStatementQuery(IfxSqli.java:1434) 
&lt;BR /&gt; at com.informix.jdbc.IfxResultSet.a(IfxResultSet.java:205) 
&lt;BR /&gt; at com.informix.jdbc.IfxStatement.executeQueryImpl(IfxStatement.java:1228) 
&lt;BR /&gt; at com.informix.jdbc.IfxStatement.executeQuery(IfxStatement.java:218) 
&lt;BR /&gt; at talenddemosjava.infx01_0_1.infx01.tInformixInput_1Process(infx01.java:687) 
&lt;BR /&gt; at talenddemosjava.infx01_0_1.infx01.runJobInTOS(infx01.java:1436) 
&lt;BR /&gt; at talenddemosjava.infx01_0_1.infx01.main(infx01.java:1353) 
&lt;BR /&gt;Caused by: java.sql.SQLException 
&lt;BR /&gt; at com.informix.util.IfxErrMsg.getSQLException(IfxErrMsg.java:397) 
&lt;BR /&gt; at com.informix.jdbc.IfxSqli.E(IfxSqli.java:3558) 
&lt;BR /&gt; ... 10 more 
&lt;BR /&gt;Job infx01 ended at 11:14 22/09/2009.</description>
      <pubDate>Tue, 22 Sep 2009 17:22:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310990#M82069</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-22T17:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: tInformixRow</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310991#M82070</link>
      <description>Hello Oramon 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;java.sql.SQLException: A syntax error has occurred.&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Can you show us your sql statement? I check informix11.5 on TOS3.1.4 and it works fine. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Wed, 23 Sep 2009 07:56:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310991#M82070</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-23T07:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: tInformixRow</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310992#M82071</link>
      <description>One problem I found is that when the SQL is created the FROM statement is not picking the table name it sets it to NULL
&lt;BR /&gt;java.sql.ResultSet rs_tInformixInput_1 = stmt_tInformixInput_1
&lt;BR /&gt; .executeQuery("SELECT trans2000.trans_id, trans2000.trans_type FROM null");</description>
      <pubDate>Wed, 23 Sep 2009 18:42:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310992#M82071</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-23T18:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: tInformixRow</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310993#M82072</link>
      <description>Hello
&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;One problem I found is that when the SQL is created the FROM statement is not picking the table name it sets it to NULL&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;Yes, you should check if have typed in the table name. After you define the schema, you can click on 'guess query' button to generate sql statement auto.
&lt;BR /&gt;Best regards
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Thu, 24 Sep 2009 04:34:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tInformixRow/m-p/2310993#M82072</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-24T04:34:16Z</dc:date>
    </item>
  </channel>
</rss>

