<?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: Create multiple output files based on a unknown number or keys in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355637#M121349</link>
    <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;I also have same scenario where i need to write data into files as per the data value of some column like&amp;nbsp;&lt;BR /&gt;(E drive/output/year/2016)&lt;BR /&gt;(E drive/output/year/2015)&lt;BR /&gt;where i am getting &amp;nbsp;2015 and 2016 in my data as a column value .&lt;BR /&gt;I am able to achieve this with standard job .&lt;BR /&gt;But I am facing the problem &amp;nbsp;doing this by&amp;nbsp;&lt;B&gt;&lt;I&gt; Bigdata Batch job (Spark ).&lt;/I&gt;&lt;/B&gt;&lt;BR /&gt;&lt;B&gt;&lt;I&gt;or suggest any other optimize way using spark batch job&amp;nbsp;&lt;/I&gt;&lt;/B&gt;&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;I achived this by writing custom java code by saving RDD using multiple file format .
&lt;BR /&gt;You can also use dataframes partition by save method&amp;nbsp;
&lt;BR /&gt;Br&amp;nbsp;
&lt;BR /&gt;Anuj</description>
    <pubDate>Fri, 24 Feb 2017 08:59:32 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-02-24T08:59:32Z</dc:date>
    <item>
      <title>Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355624#M121336</link>
      <description>I am trying to split one flow into multiple outputs based on a key. there are an unknown number of keys and every row with the same key is going to be outputted to a tFileOutputDelimited corresponding to that key. Any thoughts on how to go about doing this?</description>
      <pubDate>Mon, 03 Jun 2013 15:45:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355624#M121336</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-03T15:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355625#M121337</link>
      <description>Hi, 
&lt;BR /&gt;1) Calculate the total number of distinct records in the input data (distinct key value) 
&lt;BR /&gt;2) Store this value in the variable 
&lt;BR /&gt;3) Use Orchestration component like tFlowIterate, tLoop for looping mechanism 
&lt;BR /&gt;4) As the number of input records are dynamic, use the variable value (stored in 2nd step) for number of Iteration 
&lt;BR /&gt;5) Use Input component --&amp;gt; Filter --&amp;gt; tFileOutputDelimeted 
&lt;BR /&gt;6) Use parameter in the filter &amp;amp; tFileOutputDelimeted for storing different key value in the corresponding file 
&lt;BR /&gt;Best Regards, 
&lt;BR /&gt;Mayur</description>
      <pubDate>Mon, 03 Jun 2013 18:40:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355625#M121337</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-03T18:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355626#M121338</link>
      <description>Thanks for the response,&lt;BR /&gt;I think I understand the concept you put forward, but I'm not sure how to implement it. &lt;BR /&gt;1) how do I store the value in a variable from the flow?&lt;BR /&gt;2) How is tFlowToIterate used?&lt;BR /&gt;I'm new to Talend. Thanks for your help!&lt;BR /&gt;-- &lt;BR /&gt;Jeff</description>
      <pubDate>Mon, 03 Jun 2013 19:35:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355626#M121338</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-03T19:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355627#M121339</link>
      <description>Hi Jeff, 
&lt;BR /&gt;For your 1st question: 
&lt;BR /&gt;# You can use tUniqueRow Component to identify the Unique records from input 
&lt;BR /&gt;# Pass these values to tMap component 
&lt;BR /&gt;# In tMap component create one variable (v_RowCount)with Integer as data type and increase its value by one for each iteration 
&lt;BR /&gt;# Once the flow is completed the variable in the tMap (v_RowCount) will consist of number of unique records in the file 
&lt;BR /&gt;# You can use this variable in your further logic 
&lt;BR /&gt;For your 2nd question: For help in any component use the following steps 
&lt;BR /&gt;# Drag &amp;amp; drop this component (any) in the work area 
&lt;BR /&gt;# Simply click F1 
&lt;BR /&gt;# A link will be visible in the Help window 
&lt;BR /&gt;# Click on that click, it will take you to that particular help section which consist of that component specific information 
&lt;BR /&gt;# Below that details it also consist of the case studies which will be helpful to understand how to implement any job by using this component 
&lt;BR /&gt;Try out these things and let me know in case you face any issues. 
&lt;BR /&gt;Best Regards, 
&lt;BR /&gt;Mayur</description>
      <pubDate>Tue, 11 Jun 2013 19:54:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355627#M121339</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-11T19:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355628#M121340</link>
      <description>One little trick that might be helpful here: 
&lt;BR /&gt;almost all components will update a globalMap key &amp;lt;component_name&amp;gt;_NB_LINE with the number of rows the component processes. You can retrieve this value with a call like this (substituting your component name of course): 
&lt;BR /&gt;(Integer)globalMap.get("tOracleInput_1_NB_LINE") 
&lt;BR /&gt; 
&lt;BR /&gt;This can be very useful when you want to retrieve the number of rows that has gone through any component.</description>
      <pubDate>Tue, 11 Jun 2013 21:56:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355628#M121340</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-11T21:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355629#M121341</link>
      <description>Hi,&lt;BR /&gt;I've written a new tutorial on "&lt;A href="http://makina-corpus.com/blog/metier/2014/tutorial-talend-decomposer-le-contenu-dun-fichier-flux-vers-plusieurs-fichiers" target="_blank" rel="nofollow noopener noreferrer"&gt;how to split a file into many files regarding a key on each record&lt;/A&gt;" which explains how to solve this kind of task. It is actually only available in french. The tutorial shows 3 different technics to achieve this task. &lt;BR /&gt;Hope it can be useful.</description>
      <pubDate>Fri, 17 Oct 2014 09:09:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355629#M121341</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-17T09:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355630#M121342</link>
      <description>Here is how to write a file for each row using a unique key. 
&lt;BR /&gt;0) Create or have a existing unique key on each row 
&lt;BR /&gt;1) Read the file to prime the key in a loop(tFLowToIterate) 
&lt;BR /&gt;2) On the second read imbedded in the iterator filter on the iterator key 
&lt;BR /&gt;3)&amp;nbsp;Change the name of the file to use the iterator key and current date time stamp 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MEb3.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134474iF2E79AB136668A6E/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MEb3.png" alt="0683p000009MEb3.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Wed, 17 Feb 2016 11:10:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355630#M121342</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-17T11:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355631#M121343</link>
      <description>Hi,&lt;BR /&gt;I would like to generate multiple files based on year and all these files has to store in their corresponding year folders automatically.&lt;BR /&gt;Plz find below screen shots for my requirement:</description>
      <pubDate>Tue, 28 Jun 2016 06:07:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355631#M121343</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-28T06:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355632#M121344</link>
      <description>Hi&amp;nbsp;
&lt;FONT color="#5b5b5d"&gt;&lt;FONT size="2"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;ashajyothi.ece,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="2"&gt;&lt;FONT face="Calibri, sans-serif"&gt;Can you upload again the screenshots you wanted to show, please? For some reason it didn't make it to your post.&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="2"&gt;&lt;FONT face="Calibri, sans-serif"&gt;Best regards&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="2"&gt;&lt;FONT face="Calibri, sans-serif"&gt;Sabrina&lt;/FONT&gt;&lt;/FONT&gt;</description>
      <pubDate>Tue, 28 Jun 2016 09:10:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355632#M121344</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-28T09:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355633#M121345</link>
      <description>I've written a tutorial that covers this requirement I think....
&lt;BR /&gt;
&lt;A href="https://www.rilhia.com/tutorials/load-data-dynamic-number-files" rel="nofollow noopener noreferrer"&gt;https://www.rilhia.com/tutorials/load-data-dynamic-number-files&lt;/A&gt;</description>
      <pubDate>Tue, 28 Jun 2016 10:14:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355633#M121345</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-28T10:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355634#M121346</link>
      <description>Hi Sabrina, 
&lt;BR /&gt;Thank you for your quick response 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;As I am unable to upload screen shots am providing my requirement: 
&lt;BR /&gt;Actually I have a huge CSV file. It has a date column. My data is from 2000 to 2016 year.&amp;nbsp; 
&lt;BR /&gt;All dates are in this format--"DD-MM-YYYY". 
&lt;BR /&gt;I would like to store each year data in a separate csv file. For example all 2016 data has to store automatically in separate csv file and 2015 data in a separate csv file in the below path&amp;nbsp; 
&lt;BR /&gt;(E drive/output/year/2016) 
&lt;BR /&gt;(E drive/output/year/2015)..............so on.... 
&lt;BR /&gt;I hope you understand my requirement. It would be very helpful if you provide job design with screen shots. As i am very new to talend. 
&lt;BR /&gt;Kindly let me know if you have any concerns. 
&lt;BR /&gt;Thanks in advance. 
&lt;BR /&gt;Kind regards, 
&lt;BR /&gt;Asha</description>
      <pubDate>Wed, 29 Jun 2016 05:58:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355634#M121346</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-29T05:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355635#M121347</link>
      <description>&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;Hi,&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;Can any one explain how to update records in &amp;nbsp;csv file?&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;My requirement is :&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;I have two csv file with same columns id, name.&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;(old.csv) id name&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1 &amp;nbsp;Asha&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2 &amp;nbsp;Jyothi&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;(New.csv) id name&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1 Jyothi&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2 Raj&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3 Vinay&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;So I need to update the new records for id 1 and 2 and insert 3rd record.&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;Please let me know if any concerns.&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;Kind Regards,&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;Asha&lt;/FONT&gt;&lt;/FONT&gt;</description>
      <pubDate>Fri, 12 Aug 2016 08:55:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355635#M121347</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2016-08-12T08:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355636#M121348</link>
      <description>I also have same scenario where i need to write data into files as per the data value of some column like&amp;nbsp;&lt;BR /&gt;(E drive/output/year/2016)&lt;BR /&gt;(E drive/output/year/2015)&lt;BR /&gt;where i am getting &amp;nbsp;2015 and 2016 in my data as a column value .&lt;BR /&gt;I am able to achieve this with standard job .&lt;BR /&gt;But I am facing the problem &amp;nbsp;doing this by&amp;nbsp;&lt;B&gt;&lt;I&gt; Bigdata Batch job (Spark ).&lt;/I&gt;&lt;/B&gt;&lt;BR /&gt;&lt;B&gt;&lt;I&gt;or suggest any other optimize way using spark batch job&amp;nbsp;&lt;/I&gt;&lt;/B&gt;</description>
      <pubDate>Wed, 08 Feb 2017 11:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355636#M121348</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2017-02-08T11:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355637#M121349</link>
      <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;I also have same scenario where i need to write data into files as per the data value of some column like&amp;nbsp;&lt;BR /&gt;(E drive/output/year/2016)&lt;BR /&gt;(E drive/output/year/2015)&lt;BR /&gt;where i am getting &amp;nbsp;2015 and 2016 in my data as a column value .&lt;BR /&gt;I am able to achieve this with standard job .&lt;BR /&gt;But I am facing the problem &amp;nbsp;doing this by&amp;nbsp;&lt;B&gt;&lt;I&gt; Bigdata Batch job (Spark ).&lt;/I&gt;&lt;/B&gt;&lt;BR /&gt;&lt;B&gt;&lt;I&gt;or suggest any other optimize way using spark batch job&amp;nbsp;&lt;/I&gt;&lt;/B&gt;&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;I achived this by writing custom java code by saving RDD using multiple file format .
&lt;BR /&gt;You can also use dataframes partition by save method&amp;nbsp;
&lt;BR /&gt;Br&amp;nbsp;
&lt;BR /&gt;Anuj</description>
      <pubDate>Fri, 24 Feb 2017 08:59:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355637#M121349</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-24T08:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Create multiple output files based on a unknown number or keys</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355638#M121350</link>
      <description>&lt;P&gt;If you just want to split the input file based on row count. Then Use&amp;nbsp;&amp;nbsp;&lt;A href="https://help.talend.com/reader/wDRBNUuxk629sNcI0dNYaA/NlKwlsiB7BfqdhR0guSjsw" target="_blank" rel="nofollow noopener noreferrer noopener noreferrer"&gt;tFileOutputDelimited&lt;/A&gt;.&lt;/P&gt; 
&lt;P&gt;Go to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;U&gt;Advanced setting&amp;nbsp;&lt;/U&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and tick (Split output in several files) and you can mention number of row you need in each output file.&amp;nbsp;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="asas.JPG" style="width: 738px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lzne.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153302iBC6B993A62BFA30D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lzne.jpg" alt="0683p000009Lzne.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 08:47:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-multiple-output-files-based-on-a-unknown-number-or-keys/m-p/2355638#M121350</guid>
      <dc:creator>premv258</dc:creator>
      <dc:date>2018-08-07T08:47:22Z</dc:date>
    </item>
  </channel>
</rss>

