<?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>article Qlik Talend Data Integration: How to process changing data structure? in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Talend-Data-Integration-How-to-process-changing-data/ta-p/2151086</link>
    <description>&lt;P&gt;This article introduces the dynamic schema feature. Dynamic schema allows you to design Jobs with an unknown column structure (unknown name and number of columns). If necessary, dynamic columns can be mapped directly to the target using Pass-through mode.&lt;/P&gt;
&lt;P&gt;The main application of this functionality is a replication scenario or a simple one-to-one mapping of many columns. This feature makes designing these types of Jobs easy. For example, if you need to migrate a whole database with hundreds of tables, you can do so without explicitly including the table structure, using a single Job.&lt;/P&gt;
&lt;P&gt;This article demonstrates the dynamic schema feature through two examples:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Read a table with dynamic schema&lt;/LI&gt;
&lt;LI&gt;Read a file with dynamic schema&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;These examples are available in the attached Zip file. This procedure is compatible with all versions of Talend subscription products.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;List of components that support the dynamic schema feature&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;Not every component supports the dynamic schema feature. Refer to the article &lt;A href="https://community.qlik.com/t5/Ready-for-Go-Live/Which-Talend-components-provide-the-Dynamic-Schema-feature/ta-p/2151910" target="_blank" rel="noopener"&gt;Which components provide the Dynamic Schema feature?&lt;/A&gt; to know which components provide the dynamic schema feature.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Procedure&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Read a table with a dynamic schema&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;This example will extract data from a table called &lt;STRONG&gt;person&lt;/STRONG&gt;. The table has many columns and contains the following example data. The objective is to write this data to a file.&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH colspan="1" rowspan="1"&gt;id&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;name&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;gender&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;email&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;department&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;entry_date&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;1&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Jeffe&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Boy&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;jeffe@company.com&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;R&amp;amp;D&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;2012-05-15&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;2&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Shong&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Boy&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;shong@company.com&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Community&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;2011-08-07&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;3&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Johnson&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Girl&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;johnson@company.com&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;HR&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;2014-04-16&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;4&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Joyce&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Girl&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;joyce@company.com&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Test&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;2012-09-10&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;5&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Truman&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Boy&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;truman@company.com&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Marketing&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;2013-02-27&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Talend Open Studio for Data Integration, the community version, you have to define each column in the schema to map the real table structure. If the table structure is unknown, it is impossible to read the table.&lt;/P&gt;
&lt;P&gt;In Talend subscription products, there is a &lt;STRONG&gt;Dynamic&lt;/STRONG&gt; type in the &lt;STRONG&gt;Type&lt;/STRONG&gt; list, as seen in the following figure:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uB8RAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/122807i5EBD81D4C9E4AC25/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uB8RAAU.png" alt="0693p000008uB8RAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Using this type, you will need to define only one column with the &lt;STRONG&gt;Dynamic&lt;/STRONG&gt; type, instead of defining all columns.&lt;/P&gt;
&lt;H4 class="lia-message-template-content-zone"&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Example Job&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;H4 class="lia-message-template-content-zone"&gt;Create an example Job called &lt;STRONG style="font-family: inherit; font-size: 16px; color: inherit;"&gt;ReadTableDataWithDynamicSchema&lt;/STRONG&gt;&lt;SPAN&gt;. The Job contains two components:&lt;/SPAN&gt;&lt;/H4&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tMysqlInput_1&lt;/STRONG&gt;: read &lt;STRONG&gt;person&lt;/STRONG&gt; data from the database.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tFileOutputDelimited_1&lt;/STRONG&gt;: write the data to a text file with a header.&lt;/P&gt;
&lt;P&gt;The detailed Job settings can be seen in the following figures:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uB8WAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121876i3FB210601FBF7776/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uB8WAAU.png" alt="0693p000008uB8WAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tMysqlInput_1&lt;/STRONG&gt; settings:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uB5kAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123275iD6C7BFCD215E8602/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uB5kAAE.png" alt="0693p000008uB5kAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tMysqlInput_1&lt;/STRONG&gt; schema:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uB25AAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121608i9A34D683CC2F0D4C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uB25AAE.png" alt="0693p000008uB25AAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tFileOutputDelimited_1&lt;/STRONG&gt; settings:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uB8bAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/125069i8B6BE98B3F7CA1C9/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uB8bAAE.png" alt="0693p000008uB8bAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4 class="lia-message-template-content-zone"&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Execute the Job&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Execute the Job and open the generated file (in this case, it is &lt;STRONG&gt;D:/file/out.txt&lt;/STRONG&gt;). Verify that all data is written to the file with the correct column names. The data shows as follows:&lt;/P&gt;
&lt;PRE&gt;id;name;gender;email;department;entry_date
1;Jeffe;Boy;jeffe@company.com;R&amp;amp;D;15-05-2012
2;shong;box;shong@company.com;Community;07-08-2011
3;Johnson;Girl;johnson@company.com;HR;16-04-2014
4;Joyce;Girl;joyce@company.com;Test;10-09-2012
5;Truman;Boy;Truman@company.com;Marketing;27-02-2013&lt;/PRE&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Read a file with dynamic schema&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Here is another example to explain how to read data from a file with the dynamic schema feature. In this example, you will read the file that was generated by the above scenario.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: When reading data from a file with a dynamic schema, the first line of the file must be the header that will be read as the column names at run time. In this example, the first line of the file is the header.&lt;/P&gt;
&lt;PRE&gt;id;name;gender;email;department;entry_date&lt;/PRE&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Example Job&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Create an example Job called &lt;STRONG&gt;ReadFileDataWithDynamicSchema&lt;/STRONG&gt;. The Job contains two components:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tFileInputDelimited_1&lt;/STRONG&gt;: read data from the text file.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tMysqlOutput_1&lt;/STRONG&gt;: create a table in database and insert the data.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uAxzAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124814i4DD7A15FB82FABB6/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uAxzAAE.png" alt="0693p000008uAxzAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tFileInputDelimited_1&lt;/STRONG&gt; settings:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uAy0AAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124997i89A9B1FB300DCFA2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uAy0AAE.png" alt="0693p000008uAy0AAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tMysqlOutput_1&lt;/STRONG&gt; settings:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uArDAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124962i8532DAC957B36607/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uArDAAU.png" alt="0693p000008uArDAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Execute the Job&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Execute the Job. Verify that a table called &lt;STRONG&gt;person1&lt;/STRONG&gt; was created in the database and the data was inserted.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uB8NAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124150iA6661D4FEB8C3E91/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uB8NAAU.png" alt="0693p000008uB8NAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Environment&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;&lt;LI-PRODUCT title="Talend Data Integration" id="qlik_TalendDataIntegration"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Dec 2025 01:22:05 GMT</pubDate>
    <dc:creator>TalendSolutionExpert</dc:creator>
    <dc:date>2025-12-29T01:22:05Z</dc:date>
    <item>
      <title>Qlik Talend Data Integration: How to process changing data structure?</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Talend-Data-Integration-How-to-process-changing-data/ta-p/2151086</link>
      <description>&lt;P&gt;This article introduces the dynamic schema feature. Dynamic schema allows you to design Jobs with an unknown column structure (unknown name and number of columns). If necessary, dynamic columns can be mapped directly to the target using Pass-through mode.&lt;/P&gt;
&lt;P&gt;The main application of this functionality is a replication scenario or a simple one-to-one mapping of many columns. This feature makes designing these types of Jobs easy. For example, if you need to migrate a whole database with hundreds of tables, you can do so without explicitly including the table structure, using a single Job.&lt;/P&gt;
&lt;P&gt;This article demonstrates the dynamic schema feature through two examples:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Read a table with dynamic schema&lt;/LI&gt;
&lt;LI&gt;Read a file with dynamic schema&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;These examples are available in the attached Zip file. This procedure is compatible with all versions of Talend subscription products.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;List of components that support the dynamic schema feature&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;Not every component supports the dynamic schema feature. Refer to the article &lt;A href="https://community.qlik.com/t5/Ready-for-Go-Live/Which-Talend-components-provide-the-Dynamic-Schema-feature/ta-p/2151910" target="_blank" rel="noopener"&gt;Which components provide the Dynamic Schema feature?&lt;/A&gt; to know which components provide the dynamic schema feature.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Procedure&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Read a table with a dynamic schema&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;This example will extract data from a table called &lt;STRONG&gt;person&lt;/STRONG&gt;. The table has many columns and contains the following example data. The objective is to write this data to a file.&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH colspan="1" rowspan="1"&gt;id&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;name&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;gender&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;email&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;department&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;entry_date&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;1&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Jeffe&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Boy&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;jeffe@company.com&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;R&amp;amp;D&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;2012-05-15&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;2&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Shong&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Boy&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;shong@company.com&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Community&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;2011-08-07&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;3&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Johnson&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Girl&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;johnson@company.com&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;HR&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;2014-04-16&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;4&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Joyce&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Girl&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;joyce@company.com&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Test&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;2012-09-10&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;5&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Truman&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Boy&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;truman@company.com&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Marketing&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;2013-02-27&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Talend Open Studio for Data Integration, the community version, you have to define each column in the schema to map the real table structure. If the table structure is unknown, it is impossible to read the table.&lt;/P&gt;
&lt;P&gt;In Talend subscription products, there is a &lt;STRONG&gt;Dynamic&lt;/STRONG&gt; type in the &lt;STRONG&gt;Type&lt;/STRONG&gt; list, as seen in the following figure:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uB8RAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/122807i5EBD81D4C9E4AC25/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uB8RAAU.png" alt="0693p000008uB8RAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Using this type, you will need to define only one column with the &lt;STRONG&gt;Dynamic&lt;/STRONG&gt; type, instead of defining all columns.&lt;/P&gt;
&lt;H4 class="lia-message-template-content-zone"&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Example Job&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;H4 class="lia-message-template-content-zone"&gt;Create an example Job called &lt;STRONG style="font-family: inherit; font-size: 16px; color: inherit;"&gt;ReadTableDataWithDynamicSchema&lt;/STRONG&gt;&lt;SPAN&gt;. The Job contains two components:&lt;/SPAN&gt;&lt;/H4&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tMysqlInput_1&lt;/STRONG&gt;: read &lt;STRONG&gt;person&lt;/STRONG&gt; data from the database.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tFileOutputDelimited_1&lt;/STRONG&gt;: write the data to a text file with a header.&lt;/P&gt;
&lt;P&gt;The detailed Job settings can be seen in the following figures:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uB8WAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121876i3FB210601FBF7776/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uB8WAAU.png" alt="0693p000008uB8WAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tMysqlInput_1&lt;/STRONG&gt; settings:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uB5kAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123275iD6C7BFCD215E8602/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uB5kAAE.png" alt="0693p000008uB5kAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tMysqlInput_1&lt;/STRONG&gt; schema:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uB25AAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121608i9A34D683CC2F0D4C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uB25AAE.png" alt="0693p000008uB25AAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tFileOutputDelimited_1&lt;/STRONG&gt; settings:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uB8bAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/125069i8B6BE98B3F7CA1C9/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uB8bAAE.png" alt="0693p000008uB8bAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4 class="lia-message-template-content-zone"&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Execute the Job&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Execute the Job and open the generated file (in this case, it is &lt;STRONG&gt;D:/file/out.txt&lt;/STRONG&gt;). Verify that all data is written to the file with the correct column names. The data shows as follows:&lt;/P&gt;
&lt;PRE&gt;id;name;gender;email;department;entry_date
1;Jeffe;Boy;jeffe@company.com;R&amp;amp;D;15-05-2012
2;shong;box;shong@company.com;Community;07-08-2011
3;Johnson;Girl;johnson@company.com;HR;16-04-2014
4;Joyce;Girl;joyce@company.com;Test;10-09-2012
5;Truman;Boy;Truman@company.com;Marketing;27-02-2013&lt;/PRE&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Read a file with dynamic schema&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Here is another example to explain how to read data from a file with the dynamic schema feature. In this example, you will read the file that was generated by the above scenario.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: When reading data from a file with a dynamic schema, the first line of the file must be the header that will be read as the column names at run time. In this example, the first line of the file is the header.&lt;/P&gt;
&lt;PRE&gt;id;name;gender;email;department;entry_date&lt;/PRE&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Example Job&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Create an example Job called &lt;STRONG&gt;ReadFileDataWithDynamicSchema&lt;/STRONG&gt;. The Job contains two components:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tFileInputDelimited_1&lt;/STRONG&gt;: read data from the text file.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tMysqlOutput_1&lt;/STRONG&gt;: create a table in database and insert the data.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uAxzAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124814i4DD7A15FB82FABB6/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uAxzAAE.png" alt="0693p000008uAxzAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tFileInputDelimited_1&lt;/STRONG&gt; settings:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uAy0AAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124997i89A9B1FB300DCFA2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uAy0AAE.png" alt="0693p000008uAy0AAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tMysqlOutput_1&lt;/STRONG&gt; settings:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uArDAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124962i8532DAC957B36607/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uArDAAU.png" alt="0693p000008uArDAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Execute the Job&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Execute the Job. Verify that a table called &lt;STRONG&gt;person1&lt;/STRONG&gt; was created in the database and the data was inserted.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uB8NAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124150iA6661D4FEB8C3E91/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uB8NAAU.png" alt="0693p000008uB8NAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Environment&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;&lt;LI-PRODUCT title="Talend Data Integration" id="qlik_TalendDataIntegration"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2025 01:22:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Talend-Data-Integration-How-to-process-changing-data/ta-p/2151086</guid>
      <dc:creator>TalendSolutionExpert</dc:creator>
      <dc:date>2025-12-29T01:22:05Z</dc:date>
    </item>
  </channel>
</rss>

