<?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 create output file w/ dynamic filename in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281908#M56286</link>
    <description>How do we create a filename "%JOBNAME%_%TIMESTAMP%.csv" dynamically and use it to store data from a table in a directory. The path can be passed into a job as a variable.</description>
    <pubDate>Sat, 16 Nov 2024 14:25:08 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T14:25:08Z</dc:date>
    <item>
      <title>create output file w/ dynamic filename</title>
      <link>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281908#M56286</link>
      <description>How do we create a filename "%JOBNAME%_%TIMESTAMP%.csv" dynamically and use it to store data from a table in a directory. The path can be passed into a job as a variable.</description>
      <pubDate>Sat, 16 Nov 2024 14:25:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281908#M56286</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: create output file w/ dynamic filename</title>
      <link>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281909#M56287</link>
      <description>Use the following code in java:&lt;BR /&gt;&lt;PRE&gt;jobName + "_" + TalendDate.formatDate("yyyyMMddHHmmssSSS", TalendDate.getCurrentDate()) + ".csv"&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 Mar 2008 23:21:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281909#M56287</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-25T23:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: create output file w/ dynamic filename</title>
      <link>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281910#M56288</link>
      <description>in a Perl project:&lt;BR /&gt;&lt;PRE&gt;$_globals{job_name} . '_' . getDate('CCYYMMDDhhmmss') . '.csv'&lt;/PRE&gt;&lt;BR /&gt;in a Java project:&lt;BR /&gt;&lt;PRE&gt;jobName + "_" + TalendDate.formatDate("yyyyMMddHHmmss", new Date()) + ".csv"&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 Mar 2008 23:26:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281910#M56288</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-25T23:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: create output file w/ dynamic filename</title>
      <link>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281911#M56289</link>
      <description>Please note that you can find global variables and usable function using auto-completion CTRL+space in any text field.</description>
      <pubDate>Tue, 25 Mar 2008 23:28:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281911#M56289</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-25T23:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: create output file w/ dynamic filename</title>
      <link>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281912#M56290</link>
      <description>What about if i want to create a filename for each row, with the content of the columns?
&lt;BR /&gt;For example i have this input info&amp;nbsp;
&lt;BR /&gt;(row1) calculoMasivosResumen;2016-02-10;14:01:01
&lt;BR /&gt;(row2) calculoTemporalGes;2016-02-10;14:07:41
&lt;BR /&gt;(row3) controlComisionesTardia;2016-02-10;14:05:04
&lt;BR /&gt;I want a file name called calculoMasivosResumen_2016-02-10_14:01:01.txt, another file called &amp;nbsp;&amp;nbsp;calculoTemporalGes_2016-02-10_14:07:41.txt and other called controlComisionesTardia_2016-02-10_14:05:04.txt
&lt;BR /&gt;I'm clear?
&lt;BR /&gt;Thank you in advance for your help.</description>
      <pubDate>Wed, 10 Feb 2016 13:58:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281912#M56290</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-10T13:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: create output file w/ dynamic filename</title>
      <link>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281913#M56291</link>
      <description>I've got the same question, I want to create over 30 files one per specific ID, however I would like to do it without creation of 30 tMaps outputs..
&lt;BR /&gt;example: outputFilename:&amp;nbsp;context.talendPath+"Projects/DWH/test_"+row7.id+".csv"
&lt;BR /&gt;however this solution or using globalMap, creates only file for first id and then it's fixed.</description>
      <pubDate>Fri, 15 Apr 2016 14:23:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281913#M56291</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-15T14:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: create output file w/ dynamic filename</title>
      <link>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281914#M56292</link>
      <description>Hello Diego,&amp;nbsp;&lt;BR /&gt;I just want to let you know that thanks to stackoverflow Ive found solution:&lt;BR /&gt;&lt;A href="http://stackoverflow.com/questions/25684433/how-to-create-multiple-output-files-in-talend-based-on-a-column-from-an-sql-inpu" rel="nofollow noopener noreferrer"&gt;http://stackoverflow.com/questions/25684433/how-to-create-multiple-output-files-in-talend-based-on-a-column-from-an-sql-inpu&lt;/A&gt;&lt;BR /&gt;After reading this I got a main design in my head.&lt;BR /&gt;it is not the fastest solution but it works like a charm. let me know if you have any further questions.</description>
      <pubDate>Mon, 25 Apr 2016 09:46:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281914#M56292</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-25T09:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: create output file w/ dynamic filename</title>
      <link>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281915#M56293</link>
      <description>Thx for sharing!</description>
      <pubDate>Tue, 14 Jun 2016 15:50:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281915#M56293</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-14T15:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: create output file w/ dynamic filename</title>
      <link>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281916#M56294</link>
      <description>Hi dirk, let me know if you will need help. Ive everything tested and working on prod site.</description>
      <pubDate>Wed, 15 Jun 2016 14:32:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281916#M56294</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-15T14:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: create output file w/ dynamic filename</title>
      <link>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281917#M56295</link>
      <description>I demonstrate an easy way of doing this in this tutorial ( 
&lt;A href="https://www.rilhia.com/tutorials/load-data-dynamic-number-files" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.rilhia.com/tutorials/load-data-dynamic-number-files&lt;/A&gt;)</description>
      <pubDate>Wed, 15 Jun 2016 15:59:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/create-output-file-w-dynamic-filename/m-p/2281917#M56295</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-15T15:59:59Z</dc:date>
    </item>
  </channel>
</rss>

