<?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: Adding UUID to the database table in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328951#M98189</link>
    <description>Hi, 
&lt;BR /&gt; 
&lt;BR /&gt;Due to there is no "uuid" in your target DB, you should add column of "uuid" first. ("Alter table tablename add Column name type varchar(100)") firstly. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina</description>
    <pubDate>Tue, 16 Jul 2013 08:50:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-07-16T08:50:29Z</dc:date>
    <item>
      <title>Adding UUID to the database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328950#M98188</link>
      <description>I want to transform ms sql database table to postgres through a transformation.&lt;BR /&gt;In this transformation, I want to add a new column which contains uuid for the new row to be inserted.&lt;BR /&gt;As well as uuid should be generated from the table contents itself.&lt;BR /&gt;I can transform the table (without uuid) for now..but unable to generate uuid and map it to the postgres database table.&lt;BR /&gt;Can I map it through tMap??</description>
      <pubDate>Tue, 16 Jul 2013 08:13:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328950#M98188</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-16T08:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Adding UUID to the database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328951#M98189</link>
      <description>Hi, 
&lt;BR /&gt; 
&lt;BR /&gt;Due to there is no "uuid" in your target DB, you should add column of "uuid" first. ("Alter table tablename add Column name type varchar(100)") firstly. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina</description>
      <pubDate>Tue, 16 Jul 2013 08:50:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328951#M98189</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-16T08:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Adding UUID to the database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328952#M98190</link>
      <description>You can write a routine to generate your UUID and then just call it from tMap.&lt;BR /&gt;e.g.&lt;BR /&gt;...&lt;BR /&gt;import java.util.UUID;&lt;BR /&gt;...&lt;BR /&gt;public static String getUUID() {&lt;BR /&gt;    	return UUID.randomUUID().toString();&lt;BR /&gt;    }&lt;BR /&gt;...</description>
      <pubDate>Tue, 16 Jul 2013 09:10:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328952#M98190</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-16T09:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Adding UUID to the database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328953#M98191</link>
      <description>I added column for storing "uuid" in target table. And I have my own mechanism (breaking 1 column of same table into pieces and re arranging it) to generate through SELECT sql (using queries in repository).
&lt;BR /&gt;What does that query returns as result set?? How to see that?
&lt;BR /&gt;I am giving the output of the query to a tMap component. But the result of that query can not be read by tMap. How to resolve this issue?
&lt;BR /&gt;tMap is forwardly connected to target DB (Postgres).</description>
      <pubDate>Tue, 16 Jul 2013 09:50:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328953#M98191</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-16T09:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: Adding UUID to the database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328954#M98192</link>
      <description>Hi, &lt;BR /&gt;Result set? Talend provide a component &lt;A href="https://help.talend.com/search/all?query=tParseRecordSet&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;tParseRecordSet&lt;/A&gt; which parses a set of records from a database table or DB query and possibly returns single records.&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Tue, 16 Jul 2013 09:58:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328954#M98192</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-16T09:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Adding UUID to the database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328955#M98193</link>
      <description>@sabrina : I wanted to know, how can I proccess that "uuid" which I have generated in select query. Because I can not see that column name in tMap component while mapping table fields</description>
      <pubDate>Tue, 16 Jul 2013 10:18:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328955#M98193</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-16T10:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Adding UUID to the database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328956#M98194</link>
      <description>have you added it to the schema of your database input component? if you have, it should be available to tMap.</description>
      <pubDate>Tue, 16 Jul 2013 11:42:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328956#M98194</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-16T11:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Adding UUID to the database table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328957#M98195</link>
      <description>@talendByExample : yup. I did that. Still its not working. Do you have any other solution??</description>
      <pubDate>Thu, 18 Jul 2013 09:22:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-UUID-to-the-database-table/m-p/2328957#M98195</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-18T09:22:30Z</dc:date>
    </item>
  </channel>
</rss>

