<?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 Retrive Schema of a file Dynamically in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Retrive-Schema-of-a-file-Dynamically/m-p/2321948#M91936</link>
    <description>&lt;P&gt;I have a requirement where we get 40 *.txt files with different schemas and we need to load it to respective tables by reading file after file. &lt;/P&gt;&lt;P&gt;is there a way i can pull schema of the particular file based on filename and run dynamically for each file in the same manner. &lt;/P&gt;&lt;P&gt;Can anyone suggest how i should proceed with this senario &lt;/P&gt;</description>
    <pubDate>Thu, 08 Sep 2022 20:27:33 GMT</pubDate>
    <dc:creator>DSuryadevara</dc:creator>
    <dc:date>2022-09-08T20:27:33Z</dc:date>
    <item>
      <title>Retrive Schema of a file Dynamically</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Retrive-Schema-of-a-file-Dynamically/m-p/2321948#M91936</link>
      <description>&lt;P&gt;I have a requirement where we get 40 *.txt files with different schemas and we need to load it to respective tables by reading file after file. &lt;/P&gt;&lt;P&gt;is there a way i can pull schema of the particular file based on filename and run dynamically for each file in the same manner. &lt;/P&gt;&lt;P&gt;Can anyone suggest how i should proceed with this senario &lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 20:27:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Retrive-Schema-of-a-file-Dynamically/m-p/2321948#M91936</guid>
      <dc:creator>DSuryadevara</dc:creator>
      <dc:date>2022-09-08T20:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Retrive Schema of a file Dynamically</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Retrive-Schema-of-a-file-Dynamically/m-p/2321949#M91937</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Here is a feature "Dynamic Schema" in Talend Subscription solution which&amp;nbsp;allows you to design schema with an unknown column structure (unknown name and number of columns).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For your use case, you can use tfilelist to fetch your&amp;nbsp;multiple files with mask *.txt and try to load them into respective tables by using dynamic schema.&lt;/P&gt;&lt;P&gt;The work flow should be: tfilelist--&amp;gt;tfileinputdelimited(dynamicSchema)--&amp;gt;tDBOutput(dynamicSchema).&lt;/P&gt;&lt;P&gt;Please take a look at KB article about:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.talend.com/s/article/How-to-process-changing-data-structure-ExK7j" alt="https://community.talend.com/s/article/How-to-process-changing-data-structure-ExK7j" target="_blank"&gt;https://community.talend.com/s/article/How-to-process-changing-data-structure-ExK7j&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Feel free to let us know if it is OK with you.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2022 03:45:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Retrive-Schema-of-a-file-Dynamically/m-p/2321949#M91937</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-09T03:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Retrive Schema of a file Dynamically</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Retrive-Schema-of-a-file-Dynamically/m-p/2321950#M91938</link>
      <description>&lt;P&gt;Hello Sabrina, &lt;/P&gt;&lt;P&gt;thanks for the response, this works but few columns coming from file are string or long timestamps like 20220909334455 but i need to load to tables in 09/09/2022 33:44:55 format. how will i be able to do it when running dynamically. will there be any way to convert long data type columns to Date data type for this particular job.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2022 19:14:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Retrive-Schema-of-a-file-Dynamically/m-p/2321950#M91938</guid>
      <dc:creator>DSuryadevara</dc:creator>
      <dc:date>2022-09-09T19:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: Retrive Schema of a file Dynamically</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Retrive-Schema-of-a-file-Dynamically/m-p/2321951#M91939</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;You are able to extract and map dynamic fields in tmap or tjavarow component.&lt;/P&gt;&lt;P&gt;Hope these online documentations help.&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.talend.com/r/en-US/8.0/processing/twritedynamicfields-tfixedflowinput-tjavarow-tlogrow-extracting-contents-of-dynamic-column-via-tjavarow-standard-component-enterprise-in-this" alt="https://help.talend.com/r/en-US/8.0/processing/twritedynamicfields-tfixedflowinput-tjavarow-tlogrow-extracting-contents-of-dynamic-column-via-tjavarow-standard-component-enterprise-in-this" target="_blank"&gt;https://help.talend.com/r/en-US/8.0/processing/twritedynamicfields-tfixedflowinput-tjavarow-tlogrow-extracting-contents-of-dynamic-column-via-tjavarow-standard-component-enterprise-in-this&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Sabrina&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 07:54:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Retrive-Schema-of-a-file-Dynamically/m-p/2321951#M91939</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-03T07:54:22Z</dc:date>
    </item>
  </channel>
</rss>

