<?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] Copy data from one column to another new column on the same table in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347861#M115063</link>
    <description>Hi Vaibhav,&lt;BR /&gt;Yes. I have set the values for the new column of the output. There are some null columns in the selected key column set. Can that be a issue? Cant we specify nullable column as a key in configuration?&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;Asanka.</description>
    <pubDate>Wed, 15 Oct 2014 02:50:25 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-10-15T02:50:25Z</dc:date>
    <item>
      <title>[resolved] Copy data from one column to another new column on the same table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347854#M115056</link>
      <description>Hi,&lt;BR /&gt;I need to copy all the data of a particular table column into a new column within the same table. But when copying data from source column to new column I need to transform the data of the source column (String to Double conversion). How can I achieve thin in Talend Open Studio for Data Integration. I'm using version 5.4.1.&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;Asanka.</description>
      <pubDate>Mon, 13 Oct 2014 10:06:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347854#M115056</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-13T10:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Copy data from one column to another new column on the same table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347855#M115057</link>
      <description>Try this expression
&lt;BR /&gt;
&lt;B&gt;Double.parseDouble(row.newColumn)&lt;/B&gt;</description>
      <pubDate>Mon, 13 Oct 2014 11:45:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347855#M115057</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-13T11:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Copy data from one column to another new column on the same table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347856#M115058</link>
      <description>Hi,&lt;BR /&gt;Use following jobs&lt;BR /&gt;tDBInput--&amp;gt;tMap--&amp;gt;tDBOutput&lt;BR /&gt;For above configuration you need a key column...&lt;BR /&gt;in tMap use key column and value of input column assign it to output column, use above transformation for your output column&lt;BR /&gt;Set key column in tDBOutput, this will insert the each input data from input column into the new column...&lt;BR /&gt;Thanks&lt;BR /&gt;Vaibhav</description>
      <pubDate>Mon, 13 Oct 2014 11:53:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347856#M115058</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-13T11:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Copy data from one column to another new column on the same table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347857#M115059</link>
      <description>Hi&amp;nbsp;&lt;B&gt;&lt;FONT color="#5b5b5d"&gt;&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;sanvaibhav&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT size="2"&gt;,&lt;/FONT&gt;&lt;BR /&gt;Thanks for the replies.&amp;nbsp;&lt;BR /&gt;In my case the table doesn't have a key column. I tried the same steps suggested here before I start this topic. Is there any other ways to copy entire data of a particular column to a new column within the same table where the tables doesn't have a key column? Someone please advice on this.&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;Asanka.&amp;nbsp;</description>
      <pubDate>Tue, 14 Oct 2014 01:38:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347857#M115059</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-14T01:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Copy data from one column to another new column on the same table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347858#M115060</link>
      <description>Hi,
&lt;BR /&gt;That does not matter whether your database has a key or not... in above configuration, set all the columns as key columns in tDBoutput component except newly added column and set update task
&lt;BR /&gt;Another way could be ...
&lt;BR /&gt;First read the table and put the contents in tHash component in tPreJob
&lt;BR /&gt;Use tmap to add new column with required transformation and insert data into the database... may be if possible you can do truncate and load...
&lt;BR /&gt;Thanks
&lt;BR /&gt;Vaibhav</description>
      <pubDate>Tue, 14 Oct 2014 10:02:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347858#M115060</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-14T10:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Copy data from one column to another new column on the same table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347859#M115061</link>
      <description>Hi sanvaibhav,
&lt;BR /&gt;Thank you very much for your reply. I tried your first options suggested in the above post. I set all columns as key columns of the tOracleOutput component (except newly created columns) and selected 'Update' option from Action on data options. But it doesn't copy the data from the old columns to the newly created columns. Have I missed any configurations in my job design?
&lt;BR /&gt;Thanks and Regards,
&lt;BR /&gt;Asanka.</description>
      <pubDate>Tue, 14 Oct 2014 11:00:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347859#M115061</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-14T11:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Copy data from one column to another new column on the same table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347860#M115062</link>
      <description>Have you set the value of old column to new column? i.e. in tMap output for new column, you set the value as row.oldColumn.&lt;BR /&gt;Vaibhav</description>
      <pubDate>Tue, 14 Oct 2014 11:47:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347860#M115062</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-14T11:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Copy data from one column to another new column on the same table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347861#M115063</link>
      <description>Hi Vaibhav,&lt;BR /&gt;Yes. I have set the values for the new column of the output. There are some null columns in the selected key column set. Can that be a issue? Cant we specify nullable column as a key in configuration?&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;Asanka.</description>
      <pubDate>Wed, 15 Oct 2014 02:50:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347861#M115063</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-15T02:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Copy data from one column to another new column on the same table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347862#M115064</link>
      <description>No... null can't be a key column value...&lt;BR /&gt;if all the columns are not mandatory you can select one or two which specify unique row and are not nullable&lt;BR /&gt;vaibhav</description>
      <pubDate>Wed, 15 Oct 2014 09:27:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347862#M115064</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-15T09:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Copy data from one column to another new column on the same table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347863#M115065</link>
      <description>Hi Viabhav,&lt;BR /&gt;Thanks for the information. Your suggestion solved my problem.&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;Asanka.&amp;nbsp;</description>
      <pubDate>Wed, 15 Oct 2014 09:47:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Copy-data-from-one-column-to-another-new-column-on-the/m-p/2347863#M115065</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-15T09:47:49Z</dc:date>
    </item>
  </channel>
</rss>

