<?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: [resolved] Seeding tFileList a list of files from database in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368567#M131818</link>
    <description>Hi&lt;BR /&gt;Just store the csv file into an empty directory. Then use tFileList to locate this directory and set Filemask "*".&lt;BR /&gt;Regards,&lt;BR /&gt;Pedro</description>
    <pubDate>Tue, 15 May 2012 03:46:07 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-05-15T03:46:07Z</dc:date>
    <item>
      <title>[resolved] Seeding tFileList a list of files from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368566#M131817</link>
      <description>I am trying to seed tFileList a list of files that I pulled from a table using Talend java. How can I dynamically set this up? It looks like I have to manually add in the file names to tFileList. Can I feed in a csv file?&lt;BR /&gt;In example:&lt;BR /&gt;Grab file names from a database &amp;gt;&amp;gt; store it in a csv file &amp;gt;&amp;gt; feed it to tFileList</description>
      <pubDate>Sat, 16 Nov 2024 12:17:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368566#M131817</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Seeding tFileList a list of files from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368567#M131818</link>
      <description>Hi&lt;BR /&gt;Just store the csv file into an empty directory. Then use tFileList to locate this directory and set Filemask "*".&lt;BR /&gt;Regards,&lt;BR /&gt;Pedro</description>
      <pubDate>Tue, 15 May 2012 03:46:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368567#M131818</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-05-15T03:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Seeding tFileList a list of files from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368568#M131819</link>
      <description>This doesnt actually process the raw data files. It only processes the csv file which holds the name of each file to be processed. &lt;BR /&gt;I am trying to feed tFileList a csv which contains targeted set of files for processing.</description>
      <pubDate>Tue, 15 May 2012 15:28:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368568#M131819</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-05-15T15:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Seeding tFileList a list of files from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368569#M131820</link>
      <description>give this a try:
&lt;BR /&gt;tFileInput--row--&amp;gt;flowToIterate--&amp;gt;tFileInput---row---&amp;gt;(rest of job)
&lt;BR /&gt;the first file input should contain your filenames. you retrieve them from the iterate with a call to the globalMap.</description>
      <pubDate>Tue, 15 May 2012 19:22:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368569#M131820</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2012-05-15T19:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Seeding tFileList a list of files from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368570#M131821</link>
      <description>Yeah this is a lot better solution.</description>
      <pubDate>Tue, 15 May 2012 21:07:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368570#M131821</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-05-15T21:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Seeding tFileList a list of files from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368571#M131822</link>
      <description>Hi 
&lt;BR /&gt;If you pull the file name (or file path) from database, not the file itself, you can iterate each file name directly without tFileList component. For example: 
&lt;BR /&gt;tMysqlInput--row1--tFlowToIterate---iterate--&amp;gt;the rest of job. 
&lt;BR /&gt;On the rest of job, you can access the current file name (or file path), use this expression: 
&lt;BR /&gt;(String)globalMap.get("row1.filename") 
&lt;BR /&gt;//filename is the column name; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Wed, 16 May 2012 03:33:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Seeding-tFileList-a-list-of-files-from-database/m-p/2368571#M131822</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-05-16T03:33:51Z</dc:date>
    </item>
  </channel>
</rss>

