<?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: File extraction Based on DateTime format  for every 5 mints in Archived Discussions</title>
    <link>https://community.qlik.com/t5/Archived-Discussions/File-extraction-Based-on-DateTime-format-for-every-5-mints/m-p/2402609#M65</link>
    <description>&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Can you show us an example of file name and what data you need to compare and extract?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;</description>
    <pubDate>Fri, 28 Aug 2020 09:55:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-08-28T09:55:56Z</dc:date>
    <item>
      <title>File extraction Based on DateTime format  for every 5 mints</title>
      <link>https://community.qlik.com/t5/Archived-Discussions/File-extraction-Based-on-DateTime-format-for-every-5-mints/m-p/2402608#M64</link>
      <description>&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;I am facing issues to extract source file which is available in &amp;lt;FileName&amp;gt;_DateTime.txt format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Requirement:&lt;/P&gt;  S3(AWS) will loaded with data for every 5 mints, it has 2 files one is Tinkling file which is nothing but file is available to extract other is data file.  we need to compare the datatime format with Talend Datetime and start the job execution.&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest how to implement solution's using Talend(ver7.1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your support..&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 17:40:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Discussions/File-extraction-Based-on-DateTime-format-for-every-5-mints/m-p/2402608#M64</guid>
      <dc:creator>PraveenTechM</dc:creator>
      <dc:date>2025-05-08T17:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: File extraction Based on DateTime format  for every 5 mints</title>
      <link>https://community.qlik.com/t5/Archived-Discussions/File-extraction-Based-on-DateTime-format-for-every-5-mints/m-p/2402609#M65</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Can you show us an example of file name and what data you need to compare and extract?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2020 09:55:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Discussions/File-extraction-Based-on-DateTime-format-for-every-5-mints/m-p/2402609#M65</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-28T09:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: File extraction Based on DateTime format  for every 5 mints</title>
      <link>https://community.qlik.com/t5/Archived-Discussions/File-extraction-Based-on-DateTime-format-for-every-5-mints/m-p/2402610#M66</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;My file name Conversion details:&lt;/P&gt;&lt;P&gt;ex : CUSTOMER_2020082841920.txt - this actual data file&lt;/P&gt;&lt;P&gt;TRANSFER_COMPLETED_2020082841920.txt - 0 kb file for handshake..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;we need to compare hand shake file and pull data file for processing for ingestion..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2020 10:51:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Discussions/File-extraction-Based-on-DateTime-format-for-every-5-mints/m-p/2402610#M66</guid>
      <dc:creator>PraveenTechM</dc:creator>
      <dc:date>2020-08-28T10:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: File extraction Based on DateTime format  for every 5 mints</title>
      <link>https://community.qlik.com/t5/Archived-Discussions/File-extraction-Based-on-DateTime-format-for-every-5-mints/m-p/2402611#M67</link>
      <description>&lt;P&gt;If you want need to extract the datatime from the file name, below are example code on tJava.&lt;/P&gt;&lt;P&gt;String filename = "TRANSFER_COMPLETED_2020082841920.txt";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;String datetime=filename.substring(filename.lastIndexOf("_")+1, filename.indexOf("."));&lt;/P&gt;&lt;P&gt;System.out.println(datetime);&lt;/P&gt;&lt;P&gt;Context.datetime=datetime;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then, if you need to build a new file name for comparison and extraction.&lt;/P&gt;&lt;P&gt;String newFileName="bababa"+context.datetime+".txt";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 07:48:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Discussions/File-extraction-Based-on-DateTime-format-for-every-5-mints/m-p/2402611#M67</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-31T07:48:03Z</dc:date>
    </item>
  </channel>
</rss>

