<?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: tJoin usage in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206857#M6752</link>
    <description>Hi 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;However it seems that Talend didn't check the size of coming data from a database for a particular column against the size of the destination field in Talend. Is it correct?&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Yes, there is no check in the component by default. 
&lt;BR /&gt;There is a tSchemaComplianceCheck component who can check the length or other.. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; shong</description>
    <pubDate>Fri, 25 Jan 2008 05:43:17 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-01-25T05:43:17Z</dc:date>
    <item>
      <title>tJoin usage</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206852#M6747</link>
      <description>Hello, 
&lt;BR /&gt;First of all I would like to thank the Talend developers for the excellent product. 
&lt;BR /&gt;I am quite new to the product and I have a question regarding the tJoin component usage. Can you please point me to a tJoin example or some description of that component? I?m trying to join data from a delimited file with data from a database look up table which has more than 4 million records. However, all records get rejected. 
&lt;BR /&gt;Thank you in advance 
&lt;BR /&gt;Michael</description>
      <pubDate>Sat, 16 Nov 2024 14:28:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206852#M6747</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: tJoin usage</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206853#M6748</link>
      <description>Hi
&lt;BR /&gt;From the screenshot of your job, I think you should know the usage of this component.
&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;However, all records get rejected.&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;1) Make sure you have some same value of 'SecurityId' and 'id_imnt_alt'.
&lt;BR /&gt;2)Change the column order of output schema. should be :
&lt;BR /&gt;column:
&lt;BR /&gt;SecurityId
&lt;BR /&gt;SecurityExc...
&lt;BR /&gt;ADT
&lt;BR /&gt;ADTCurrency
&lt;BR /&gt;Country
&lt;BR /&gt;id_imnt
&lt;BR /&gt;Because Talend mapping the input schema to output schema in order by default.
&lt;BR /&gt;Best regards
&lt;BR /&gt; shong</description>
      <pubDate>Thu, 24 Jan 2008 07:01:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206853#M6748</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-24T07:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: tJoin usage</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206854#M6749</link>
      <description>Hi Shong, 
&lt;BR /&gt;Thanks for the reply. I made sure that 'SecurityId' and 'id_imnt_alt' have the same value and I moved the id_imnt column at the last position in the column list. It didn?t work for me. Please consider a similar scenario for tMap with detail information on data and queries, where id_imnt_alt=SecurityId=?AN8068571086?: 
&lt;BR /&gt;1. tFileInoputDelimeted_1 connected to tLogRow displays the following: 
&lt;BR /&gt;Starting job lookup_test at 10:59 24/01/2008. 
&lt;BR /&gt; connecting to socket on port 3578 
&lt;BR /&gt; connected 
&lt;BR /&gt; connecting to socket on port 4547 
&lt;BR /&gt; connected 
&lt;BR /&gt;AN8068571086|TEST|1234|TST|TS 
&lt;BR /&gt;... 
&lt;BR /&gt; 
&lt;BR /&gt;2. This is what a select on the lookup table returns for a given id_imnt_alt ( 'AN8068571086'): 
&lt;BR /&gt;select id_imnt, id_imnt_alt from EXCHANGE_IMNT_ALTERNATE_ID where id_imnt_alt='AN8068571086' and id_typ_alt_imnt = 'I' 
&lt;BR /&gt; 
&lt;BR /&gt;id_imnt id_imnt_alt 
&lt;BR /&gt;=================== 
&lt;BR /&gt;123 AN8068571086 
&lt;BR /&gt;123456 AN8068571086 
&lt;BR /&gt;3.lookup query returns two records as it is displayed by tLogRow_1 
&lt;BR /&gt; 123|AN8068571086 
&lt;BR /&gt; 123456|AN8068571086 
&lt;BR /&gt;4. When I try to join these records via tMap, all of them get rejected because of the lookup inner join. 
&lt;BR /&gt;... 
&lt;BR /&gt;tLogRow_3] AN8068571086|TEST|1234|TEST|TS||0 
&lt;BR /&gt;... 
&lt;BR /&gt;For some reason tMap cannot join two records in this scenario. 
&lt;BR /&gt;Can you please advise if I am doing anything wrong and what should I do in order to join the data of the two input components? 
&lt;BR /&gt;Thanks 
&lt;BR /&gt;Michael</description>
      <pubDate>Thu, 24 Jan 2008 14:30:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206854#M6749</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-24T14:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: tJoin usage</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206855#M6750</link>
      <description>I think you should trim your data in your DB query, in particular from your table "test_table".&lt;BR /&gt;I suspect that your column "id_imnt_alt" has DB type CHAR(25), so tMap can't match your data.</description>
      <pubDate>Thu, 24 Jan 2008 16:56:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206855#M6750</guid>
      <dc:creator>amaumont</dc:creator>
      <dc:date>2008-01-24T16:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: tJoin usage</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206856#M6751</link>
      <description>yes, i've already got it. Thanks. For my better understanding of Talend - the look up field in Talend (id_imnt_alt ) has always had column size equal to 12. The same size was defined for data in the file. However it seems that Talend didn't check the size of coming data from a database for a particular column against the size of the destination field in Talend. Is it correct?</description>
      <pubDate>Thu, 24 Jan 2008 17:31:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206856#M6751</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-24T17:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: tJoin usage</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206857#M6752</link>
      <description>Hi 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;However it seems that Talend didn't check the size of coming data from a database for a particular column against the size of the destination field in Talend. Is it correct?&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Yes, there is no check in the component by default. 
&lt;BR /&gt;There is a tSchemaComplianceCheck component who can check the length or other.. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; shong</description>
      <pubDate>Fri, 25 Jan 2008 05:43:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206857#M6752</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-25T05:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: tJoin usage</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206858#M6753</link>
      <description>Hi,&lt;BR /&gt;I am new to Talend tool, can somebody provide me step by step example for tJoin by connecting the database and extract the data from two tables using tJoin.&lt;BR /&gt;Regards&lt;BR /&gt;Babu</description>
      <pubDate>Tue, 26 Jan 2016 10:38:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206858#M6753</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-26T10:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: tJoin usage</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206859#M6754</link>
      <description>Hi babu,&lt;BR /&gt;Here are related scenarios in component reference:&lt;A href="https://help.talend.com/search/all?query=tJoin&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter:tJoin&lt;/A&gt;.&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Wed, 27 Jan 2016 08:43:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tJoin-usage/m-p/2206859#M6754</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-27T08:43:59Z</dc:date>
    </item>
  </channel>
</rss>

