<?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: Loading multiple CSV files to one CSV file and then to Datawarehouse table in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230671#M21222</link>
    <description>&lt;P&gt;Thanks TRF I was able to acheive my requirement based on the flow you provided.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The other thing I was asked today was to create a LOAD_DATE column in the output CSV file and the load date should be based on the date which is a part of the name of the source CSV files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Instance name of one of the source csv files is &lt;STRONG&gt;All_VM_Cluster_Stats_2018-11-04.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When the data from this file is loaded to the target output csv file, LOAD_DATE column should be populated with &lt;STRONG&gt;'2018-11-04'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please explain how to achieve this.&lt;/P&gt;</description>
    <pubDate>Thu, 08 Nov 2018 22:07:09 GMT</pubDate>
    <dc:creator>xx_emanis</dc:creator>
    <dc:date>2018-11-08T22:07:09Z</dc:date>
    <item>
      <title>Loading multiple CSV files to one CSV file and then to Datawarehouse table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230667#M21218</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have a requirement where I need to load 10 CSV files in to one CSV file and from that one CSV file I need to load the table in Datawarehouse.&lt;/P&gt;&lt;P&gt;All the 10 CSV files have the same column structure and will not be changing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please let me know the job flow of how to achieve this.&lt;/P&gt;&lt;P&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 07:20:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230667#M21218</guid>
      <dc:creator>xx_emanis</dc:creator>
      <dc:date>2024-11-16T07:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Loading multiple CSV files to one CSV file and then to Datawarehouse table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230668#M21219</link>
      <description>3 main steps ti build the output file:
&lt;BR /&gt;- tFileList to iterate over the 10 input files
&lt;BR /&gt;- tFileInputDelimited to read the content of the current file using tFileList_1_CURRENT_FILEPATH to get the full pathname
&lt;BR /&gt;- tFileOutputDelimited with append mode to generate the output file
&lt;BR /&gt;
&lt;BR /&gt;Then you can get this file as the input to load data into your DWH. Details depend on the engine you are using for this DWH.</description>
      <pubDate>Wed, 07 Nov 2018 20:47:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230668#M21219</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-11-07T20:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: Loading multiple CSV files to one CSV file and then to Datawarehouse table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230669#M21220</link>
      <description>&lt;P&gt;Thanks for the quick reply.&lt;/P&gt;&lt;P&gt;Do I need to create 10 different metadata for the 10 different CSV I have?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Nov 2018 20:51:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230669#M21220</guid>
      <dc:creator>xx_emanis</dc:creator>
      <dc:date>2018-11-07T20:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Loading multiple CSV files to one CSV file and then to Datawarehouse table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230670#M21221</link>
      <description>Of course not as soon as all files have the same structure</description>
      <pubDate>Wed, 07 Nov 2018 20:54:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230670#M21221</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-11-07T20:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Loading multiple CSV files to one CSV file and then to Datawarehouse table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230671#M21222</link>
      <description>&lt;P&gt;Thanks TRF I was able to acheive my requirement based on the flow you provided.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The other thing I was asked today was to create a LOAD_DATE column in the output CSV file and the load date should be based on the date which is a part of the name of the source CSV files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Instance name of one of the source csv files is &lt;STRONG&gt;All_VM_Cluster_Stats_2018-11-04.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When the data from this file is loaded to the target output csv file, LOAD_DATE column should be populated with &lt;STRONG&gt;'2018-11-04'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please explain how to achieve this.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 22:07:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230671#M21222</guid>
      <dc:creator>xx_emanis</dc:creator>
      <dc:date>2018-11-08T22:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: Loading multiple CSV files to one CSV file and then to Datawarehouse table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230672#M21223</link>
      <description>New question, thank's to open à new topic</description>
      <pubDate>Thu, 08 Nov 2018 22:29:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230672#M21223</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-11-08T22:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: Loading multiple CSV files to one CSV file and then to Datawarehouse table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230673#M21224</link>
      <description>sorry dint get you..Do you want me to open a new topic for this question?</description>
      <pubDate>Thu, 08 Nov 2018 22:35:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230673#M21224</guid>
      <dc:creator>xx_emanis</dc:creator>
      <dc:date>2018-11-08T22:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Loading multiple CSV files to one CSV file and then to Datawarehouse table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230674#M21225</link>
      <description>Yes, it's better to have just 1 question per topic</description>
      <pubDate>Thu, 08 Nov 2018 22:47:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230674#M21225</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-11-08T22:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Loading multiple CSV files to one CSV file and then to Datawarehouse table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230675#M21226</link>
      <description>&lt;P&gt;&lt;SPAN&gt;- tFileList to iterate over the 10 input files&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- tFileInputDelimited to read the content of the current file using&amp;nbsp;&lt;A href="https://fetlife.vip/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://fetlife.vip/&lt;/A&gt; &lt;A href="https://downloader.vip/imvu/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://downloader.vip/imvu/&lt;/A&gt; &lt;A href="https://downloader.vip/canva/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://downloader.vip/canva/&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Nov 2018 14:34:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Loading-multiple-CSV-files-to-one-CSV-file-and-then-to/m-p/2230675#M21226</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-10T14:34:11Z</dc:date>
    </item>
  </channel>
</rss>

