<?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: Data type mismatch in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327657#M97024</link>
    <description>Change the file definition Char by string , for eatch table you work with. &lt;BR /&gt;I allways do this and have no problems. You'll be able to work with &lt;BR /&gt;string methods.&lt;BR /&gt;Marc</description>
    <pubDate>Mon, 08 Jun 2009 11:18:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-06-08T11:18:00Z</dc:date>
    <item>
      <title>Data type mismatch</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327654#M97021</link>
      <description>Hello,
&lt;BR /&gt;I have a join (lookup) between 2 tables and I have the following error: 
&lt;BR /&gt;Starting job ArticlesUC at 11:46 08/06/2009.
&lt;BR /&gt;Exception in component tAS400Input_3
&lt;BR /&gt;java.sql.SQLException: Data type mismatch. (For input string: "BI")
&lt;BR /&gt; at com.ibm.as400.access.JDError.throwSQLException(JDError.java:528)
&lt;BR /&gt; at com.ibm.as400.access.SQLChar.getInt(SQLChar.java:486)
&lt;BR /&gt; at com.ibm.as400.access.AS400JDBCResultSet.getInt(AS400JDBCResultSet.java:2889)
&lt;BR /&gt; at projet_m3.articlesuc_0_1.ArticlesUC.tAS400Input_3Process(ArticlesUC.java:6398)
&lt;BR /&gt; at projet_m3.articlesuc_0_1.ArticlesUC.tAS400Input_2Process(ArticlesUC.java:1916)
&lt;BR /&gt; at projet_m3.articlesuc_0_1.ArticlesUC.runJobInTOS(ArticlesUC.java:8857)
&lt;BR /&gt; at projet_m3.articlesuc_0_1.ArticlesUC.main(ArticlesUC.java:8770)
&lt;BR /&gt;Job ArticlesUC ended at 11:47 08/06/2009. 
&lt;BR /&gt;How to debug this type of error??
&lt;BR /&gt;Thanks
&lt;BR /&gt;Didier</description>
      <pubDate>Sat, 16 Nov 2024 13:55:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327654#M97021</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: Data type mismatch</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327655#M97022</link>
      <description>Hello 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;java.sql.SQLException: Data type mismatch. (For input string: "BI")&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;As the message shows, there is a string in input rows, however the data type of column is int. 
&lt;BR /&gt;To avoid this exception, 
&lt;BR /&gt;Delete this row manually or set the data type as string, then filter this row. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Mon, 08 Jun 2009 11:02:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327655#M97022</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-08T11:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Data type mismatch</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327656#M97023</link>
      <description>With a SQL statement it works.
&lt;BR /&gt;So the problem is to find the record where there is the mismatch.
&lt;BR /&gt;The join between the two tables is done on fields defined as character.
&lt;BR /&gt;Any recommendations??
&lt;BR /&gt;Thanks
&lt;BR /&gt;Didier</description>
      <pubDate>Mon, 08 Jun 2009 11:15:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327656#M97023</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-08T11:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Data type mismatch</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327657#M97024</link>
      <description>Change the file definition Char by string , for eatch table you work with. &lt;BR /&gt;I allways do this and have no problems. You'll be able to work with &lt;BR /&gt;string methods.&lt;BR /&gt;Marc</description>
      <pubDate>Mon, 08 Jun 2009 11:18:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327657#M97024</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-08T11:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Data type mismatch</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327658#M97025</link>
      <description>I have changed the char type by string&lt;BR /&gt;Now I have another error:&lt;BR /&gt;Starting job ArticlesUC at 12:26 08/06/2009.&lt;BR /&gt;Exception in component tAS400Input_3&lt;BR /&gt;java.lang.ClassCastException: java.lang.String cannot be cast to java.util.List&lt;BR /&gt;	at projet_m3.articlesuc_0_1.ArticlesUC.tAS400Input_3Process(ArticlesUC.java:6797)&lt;BR /&gt;	at projet_m3.articlesuc_0_1.ArticlesUC.tAS400Input_2Process(ArticlesUC.java:1916)&lt;BR /&gt;	at projet_m3.articlesuc_0_1.ArticlesUC.runJobInTOS(ArticlesUC.java:8898)&lt;BR /&gt;	at projet_m3.articlesuc_0_1.ArticlesUC.main(ArticlesUC.java:8811)&lt;BR /&gt;Job ArticlesUC ended at 12:26 08/06/2009.</description>
      <pubDate>Mon, 08 Jun 2009 11:27:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327658#M97025</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-08T11:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Data type mismatch</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327659#M97026</link>
      <description>Try to make you join in query with the matched fields. Do you use specific code in Tmap for working with array ?
&lt;BR /&gt;Your message is strange or try to put some screens of your Tmap</description>
      <pubDate>Mon, 08 Jun 2009 14:46:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Data-type-mismatch/m-p/2327659#M97026</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-08T14:46:35Z</dc:date>
    </item>
  </channel>
</rss>

