<?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: Dynamic Schema/Type -table column name in original name in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313900#M84713</link>
    <description>&lt;P&gt;Hi @Shicong Hong​&amp;nbsp;&lt;/P&gt;&lt;P&gt;DB type is Microsoft SQL Server.No there is no option in the DB output component to make column Upper case . &lt;/P&gt;</description>
    <pubDate>Fri, 22 Jul 2022 08:21:23 GMT</pubDate>
    <dc:creator>YK3</dc:creator>
    <dc:date>2022-07-22T08:21:23Z</dc:date>
    <item>
      <title>Dynamic Schema/Type -table column name in original name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313898#M84711</link>
      <description>&lt;P&gt;I created a job in which I have to read from a DB table and write into another DB table.&lt;/P&gt;&lt;P&gt;I have to do this operation for almost 20 tables. So I am using Dynamic Type to achieve this instead of defining each table schema manually. The problem with Dynamic Type is that it creates all column names in the Upper case. For eg&lt;/P&gt;&lt;P&gt;Original column name-&lt;/P&gt;&lt;P&gt;EmpName,DeptLocReg,JoinDate &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Column name created by Dynamic Type-&lt;/P&gt;&lt;P&gt;EMPNAME,DEPTLOCREG,JOINDATE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to get the same original column names ie in &lt;/P&gt;&lt;P&gt;camelcase(&lt;/P&gt;&lt;P&gt;EmpName,DeptLocReg,JoinDate )&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 11:26:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313898#M84711</guid>
      <dc:creator>YK3</dc:creator>
      <dc:date>2022-07-21T11:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Schema/Type -table column name in original name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313899#M84712</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Which DB type? Need to check if it is database convert the column name to uppercase or there is an option to do it on tDBOutput component, like tSnowflakeOutput.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000SsrizAAB.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/146661iC4EAA26F252569C9/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000SsrizAAB.png" alt="0695b00000SsrizAAB.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2022 07:00:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313899#M84712</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-22T07:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Schema/Type -table column name in original name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313900#M84713</link>
      <description>&lt;P&gt;Hi @Shicong Hong​&amp;nbsp;&lt;/P&gt;&lt;P&gt;DB type is Microsoft SQL Server.No there is no option in the DB output component to make column Upper case . &lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2022 08:21:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313900#M84713</guid>
      <dc:creator>YK3</dc:creator>
      <dc:date>2022-07-22T08:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Schema/Type -table column name in original name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313901#M84714</link>
      <description>&lt;P&gt;For testing, add a tJavaRow before tDBOutput, and write the below Java code to print the column name to the console, to see whether it is the original column name read from Database. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;code on tJavaRow:&lt;/P&gt;&lt;P&gt;Dynamic columns = input_row.columnName;&lt;/P&gt;&lt;P&gt;for (int i = 0; i &amp;lt; columns.getColumnCount(); i++)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;DynamicMetadata columnMetadata = columns.getColumnMetadata(i);&lt;/P&gt;&lt;P&gt;String col_name=columnMetadata.getName();&lt;/P&gt;&lt;P&gt;System.out.println(col_name);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output_row.columnName=columns;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2022 08:56:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313901#M84714</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-22T08:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Schema/Type -table column name in original name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313902#M84715</link>
      <description>&lt;P&gt;Hi @Shicong Hong​&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes you are right..I tried the way you mentioned above and found that while reading column names from the database, the Column names are read in Upper Case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;In Input DB, Also, I do not define the schema manually. There also I am using Dynamic Type for the schema. In My select query in DB Input, I am naming column names in camelcase.Snippet of my Job.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000SssIOAAZ.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/137777i9445AE98ABA71B99/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000SssIOAAZ.png" alt="0695b00000SssIOAAZ.png" /&gt;&lt;/span&gt;Input DB is Oracle. What could be the solution so that it reads the column name as it is what is in the select query?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2022 11:06:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313902#M84715</guid>
      <dc:creator>YK3</dc:creator>
      <dc:date>2022-07-22T11:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Schema/Type -table column name in original name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313903#M84716</link>
      <description>&lt;P&gt;Hi @Shicong Hong​&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got the Solution.&lt;/P&gt;&lt;P&gt;I need to give the column names in Double quotes in the select statement &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2022 13:17:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313903#M84716</guid>
      <dc:creator>YK3</dc:creator>
      <dc:date>2022-07-22T13:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Schema/Type -table column name in original name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313904#M84717</link>
      <description>&lt;P&gt;Great, thanks for your feedback!&lt;/P&gt;</description>
      <pubDate>Sat, 23 Jul 2022 03:10:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Dynamic-Schema-Type-table-column-name-in-original-name/m-p/2313904#M84717</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-23T03:10:19Z</dc:date>
    </item>
  </channel>
</rss>

