<?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: Talend duplicating records in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Talend-duplicating-records/m-p/2366963#M130392</link>
    <description>&lt;P&gt;If possible please provide screen shot of job.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
    <pubDate>Fri, 13 Apr 2018 17:11:26 GMT</pubDate>
    <dc:creator>vboppudi</dc:creator>
    <dc:date>2018-04-13T17:11:26Z</dc:date>
    <item>
      <title>Talend duplicating records</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-duplicating-records/m-p/2366962#M130391</link>
      <description>&lt;P&gt;Hi guys.&lt;/P&gt; 
&lt;P&gt;My talend job is pulling a file in and breaking down the data into records, however on the input_row the data is coming in fine but the output_row is duplicating the data.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;the following is my tjavarow code:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;int recordcount = ((int)globalMap.get("readrecords"));&lt;BR /&gt;&lt;BR /&gt;int validcounter = ((int)globalMap.get("validcounter"));&lt;BR /&gt;int invalidcounter = ((int)globalMap.get("invalidcounter"));&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;System.out.println(input_row.toString());&lt;BR /&gt;if (input_row.Broken_Name_Flag==1) { // 1 = the row is fine&lt;BR /&gt;&lt;BR /&gt;globalMap.put("validcounter", validcounter + 1);&lt;BR /&gt;&lt;BR /&gt;output_row.Source = input_row.Source;&lt;BR /&gt;output_row.UCN = input_row.UCN;&lt;BR /&gt;output_row.Broken_Name_Flag = input_row.Broken_Name_Flag;&lt;BR /&gt;output_row.Customer_Title = input_row.Customer_Title;&lt;BR /&gt;output_row.Customer_Name_s = input_row.Customer_Name_s;&lt;BR /&gt;output_row.Customer_Middle_Names = input_row.Customer_Middle_Names;&lt;BR /&gt;output_row.Customer_Surname = input_row.Customer_Surname;&lt;BR /&gt;output_row.Customer_Full_Name = input_row.Customer_Full_Name;&lt;BR /&gt;output_row.Gender = input_row.Gender;&lt;BR /&gt;output_row.ID_Number = input_row.ID_Number;&lt;BR /&gt;output_row.Date_of_Birth = input_row.Date_of_Birth;&lt;BR /&gt;output_row.Citizenship = input_row.Citizenship;&lt;BR /&gt;output_row.Nationality = input_row.Nationality;&lt;BR /&gt;output_row.Country_of_Residence = input_row.Country_of_Residence;&lt;BR /&gt;output_row.Address_Line_1 = input_row.Address_Line_1;&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;else {&lt;BR /&gt;globalMap.put("invalidcounter", invalidcounter + 1);&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;output_row.validcount= validcounter + 1;&lt;BR /&gt;System.out.println(output_row.toString());&lt;BR /&gt;output_row.invalidcount= invalidcounter + 1;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;the following is my output:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Starting job RiskRatingFileUpload at 15:17 12/04/2018.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;[statistics] connecting to socket on port 3677&lt;BR /&gt;[statistics] connected&lt;BR /&gt;[trace] connecting to socket on port 4614&lt;BR /&gt;[trace] connected&lt;BR /&gt;riskratingfileupload.riskratingfileupload_0_1.RiskRatingFileUpload$row1Struct@effeb7e5[Source=Ashburton Principal Funds,UCN=,Broken_Name_Flag=1,Customer_Title=Dr,Customer_Name_s=Martin,Customer_Middle_Names=Johannes Ulrich Thomas,Customer_Surname=van Wijngaarden,Customer_Full_Name=,Gender=M,ID_Number=,Date_of_Birth=Thu Dec 01 00:00:00 CAT 1960,Citizenship=South Africa,Nationality=South Africa,Country_of_Residence=South Africa,Address_Line_1="5 Grieg Street, Vanderbijlpark, 1911"]&lt;BR /&gt;riskratingfileupload.riskratingfileupload_0_1.RiskRatingFileUpload$row3Struct@effeb7e5[Source=Ashburton Principal Funds,UCN=,Broken_Name_Flag=1,Customer_Title=Dr,Customer_Name_s=Martin,Customer_Middle_Names=Johannes Ulrich Thomas,Customer_Surname=van Wijngaarden,Customer_Full_Name=,Gender=M,ID_Number=,Date_of_Birth=Thu Dec 01 00:00:00 CAT 1960,Citizenship=South Africa,Nationality=South Africa,Country_of_Residence=South Africa,Address_Line_1="5 Grieg Street, Vanderbijlpark, 1911",validcount=1,invalidcount=null]&lt;BR /&gt;Load jars loaded successfully!&lt;BR /&gt;Connected to TIBCO !&lt;BR /&gt;session not null !&lt;BR /&gt;riskratingfileupload.riskratingfileupload_0_1.RiskRatingFileUpload$row1Struct@effeb7e5[Source=Ashburton Principal Funds,UCN=,Broken_Name_Flag=0,Customer_Title=Dr,Customer_Name_s=Adriaan,Customer_Middle_Names=,Customer_Surname=,Customer_Full_Name=,Gender=M,ID_Number=,Date_of_Birth=Thu Mar 02 00:00:00 CAT 1961,Citizenship=South Africa,Nationality=South Africa,Country_of_Residence=South Africa,Address_Line_1="Plot 56, 121 Swallow Street, Doringpoort, 0159"]&lt;BR /&gt;riskratingfileupload.riskratingfileupload_0_1.RiskRatingFileUpload$row3Struct@effeb7e5[Source=Ashburton Principal Funds,UCN=,Broken_Name_Flag=1,Customer_Title=Dr,Customer_Name_s=Martin,Customer_Middle_Names=Johannes Ulrich Thomas,Customer_Surname=van Wijngaarden,Customer_Full_Name=,Gender=M,ID_Number=,Date_of_Birth=Thu Dec 01 00:00:00 CAT 1960,Citizenship=South Africa,Nationality=South Africa,Country_of_Residence=South Africa,Address_Line_1="5 Grieg Street, Vanderbijlpark, 1911",validcount=1,invalidcount=1]&lt;BR /&gt;Load jars loaded successfully!&lt;BR /&gt;Connected to TIBCO !&lt;BR /&gt;session not null !&lt;BR /&gt;riskratingfileupload.riskratingfileupload_0_1.RiskRatingFileUpload$row1Struct@effeb7e5[Source=Ashburton Principal Funds,UCN=,Broken_Name_Flag=0,Customer_Title=Mr,Customer_Name_s=Craig,Customer_Middle_Names=Warrick,Customer_Surname=Lyall,Customer_Full_Name=,Gender=M,ID_Number=,Date_of_Birth=Thu Jan 03 00:00:00 CAT 1985,Citizenship=South Africa,Nationality=South Africa,Country_of_Residence=South Africa,Address_Line_1="Unit 10, 44 ON Bantry, 3 Antrim Road| Bryanston, 2191"]&lt;BR /&gt;riskratingfileupload.riskratingfileupload_0_1.RiskRatingFileUpload$row3Struct@effeb7e5[Source=Ashburton Principal Funds,UCN=,Broken_Name_Flag=1,Customer_Title=Dr,Customer_Name_s=Martin,Customer_Middle_Names=Johannes Ulrich Thomas,Customer_Surname=van Wijngaarden,Customer_Full_Name=,Gender=M,ID_Number=,Date_of_Birth=Thu Dec 01 00:00:00 CAT 1960,Citizenship=South Africa,Nationality=South Africa,Country_of_Residence=South Africa,Address_Line_1="5 Grieg Street, Vanderbijlpark, 1911",validcount=1,invalidcount=1]&lt;BR /&gt;Load jars loaded successfully!&lt;BR /&gt;Connected to TIBCO !&lt;BR /&gt;session not null !&lt;BR /&gt;riskratingfileupload.riskratingfileupload_0_1.RiskRatingFileUpload$row1Struct@effeb7e5[Source=Ashburton Principal Funds,UCN=,Broken_Name_Flag=1,Customer_Title=Mr,Customer_Name_s=Ashay,Customer_Middle_Names=,Customer_Surname=Deochand,Customer_Full_Name=,Gender=M,ID_Number=,Date_of_Birth=Tue May 03 00:00:00 CAT 1983,Citizenship=South Africa,Nationality=South Africa,Country_of_Residence=South Africa,Address_Line_1="Unit 1 Umuzi, 136 Daisy Street, Sandown, 2196"]&lt;BR /&gt;riskratingfileupload.riskratingfileupload_0_1.RiskRatingFileUpload$row3Struct@effeb7e5[Source=Ashburton Principal Funds,UCN=,Broken_Name_Flag=1,Customer_Title=Mr,Customer_Name_s=Ashay,Customer_Middle_Names=,Customer_Surname=Deochand,Customer_Full_Name=,Gender=M,ID_Number=,Date_of_Birth=Tue May 03 00:00:00 CAT 1983,Citizenship=South Africa,Nationality=South Africa,Country_of_Residence=South Africa,Address_Line_1="Unit 1 Umuzi, 136 Daisy Street, Sandown, 2196",validcount=1,invalidcount=1]&lt;BR /&gt;Load jars loaded successfully!&lt;BR /&gt;Connected to TIBCO !&lt;BR /&gt;session not null !&lt;BR /&gt;riskratingfileupload.riskratingfileupload_0_1.RiskRatingFileUpload$row1Struct@effeb7e5[Source=Ashburton Principal Funds,UCN=,Broken_Name_Flag=1,Customer_Title=Mr,Customer_Name_s=Zeyn,Customer_Middle_Names=,Customer_Surname=Mahomed,Customer_Full_Name=,Gender=M,ID_Number=,Date_of_Birth=Sun Jan 08 00:00:00 CAT 1984,Citizenship=South Africa,Nationality=South Africa,Country_of_Residence=South Africa,Address_Line_1="26A Central Street, Houghton Estate"]&lt;BR /&gt;riskratingfileupload.riskratingfileupload_0_1.RiskRatingFileUpload$row3Struct@effeb7e5[Source=Ashburton Principal Funds,UCN=,Broken_Name_Flag=1,Customer_Title=Mr,Customer_Name_s=Zeyn,Customer_Middle_Names=,Customer_Surname=Mahomed,Customer_Full_Name=,Gender=M,ID_Number=,Date_of_Birth=Sun Jan 08 00:00:00 CAT 1984,Citizenship=South Africa,Nationality=South Africa,Country_of_Residence=South Africa,Address_Line_1="26A Central Street, Houghton Estate",validcount=1,invalidcount=1]&lt;BR /&gt;Load jars loaded successfully!&lt;BR /&gt;Connected to TIBCO !&lt;BR /&gt;session not null !&lt;BR /&gt;[statistics] disconnected&lt;BR /&gt;[trace] disconnected&lt;BR /&gt;Job RiskRatingFileUpload ended at 15:17 12/04/2018. [exit code=0].&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;any help will be appreciated&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2018 14:20:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-duplicating-records/m-p/2366962#M130391</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-12T14:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Talend duplicating records</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-duplicating-records/m-p/2366963#M130392</link>
      <description>&lt;P&gt;If possible please provide screen shot of job.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2018 17:11:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-duplicating-records/m-p/2366963#M130392</guid>
      <dc:creator>vboppudi</dc:creator>
      <dc:date>2018-04-13T17:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Talend duplicating records</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-duplicating-records/m-p/2366964#M130393</link>
      <description>&lt;P&gt;As requested&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LsaP"&gt;Talend.PNG&lt;/A&gt;</description>
      <pubDate>Mon, 16 Apr 2018 07:52:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-duplicating-records/m-p/2366964#M130393</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-16T07:52:19Z</dc:date>
    </item>
  </channel>
</rss>

