<?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: Talend MDM Portal Auto-Increment &amp; DB Identity in Talend Data Catalog</title>
    <link>https://community.qlik.com/t5/Talend-Data-Catalog/Talend-MDM-Portal-Auto-Increment-DB-Identity/m-p/2333790#M1230</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;HR /&gt; 
 &lt;A href="https://community.qlik.com/s/profile/0053p000007LLqRAAW"&gt;@nctalend&lt;/A&gt; wrote: 
 &lt;BR /&gt; 
 &lt;P&gt;Hi -&amp;nbsp;&lt;/P&gt; 
 &lt;P&gt;&amp;nbsp;&lt;/P&gt; 
 &lt;P&gt;I have a scenario wherein users can enter data into a table through the Talend MDM Portal or directly into the Table using some Talend Job. The table has a key column which is set to type 'Auto-Increment' in MDM Datamodel and we also need to have the ability to have the key incremented in DB if data is inserted through some other process.&lt;/P&gt; 
 &lt;P&gt;&amp;nbsp;&lt;/P&gt; 
 &lt;P&gt;Question : Is there a way to achieve this in Talend and letting it know to sycn up the Keys from Portal to the ones on the DB? Since we have noticed that if we insert directly into DB them Talend MDM Portal doesnt check the ID's and it is incrementing from the point when the last record was entered via the portal.&lt;/P&gt; 
 &lt;P&gt;&amp;nbsp;&lt;/P&gt; 
 &lt;P&gt;&amp;nbsp;&lt;/P&gt; 
 &lt;HR /&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;P&gt;Do you want to sync up your data when insert data from Web UI and DB? Here is online document about:&lt;A title="TalendHelpCenter:Managing the values of auto increments in the data container browser" href="https://help.talend.com/reader/fE51zt3EBkq3lp1Op6DPEw/Gw2qqgkdA_Jpc9nfoV9yZQ" target="_self" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter:Managing the values of auto increments in the data container browser&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
    <pubDate>Tue, 26 Sep 2017 08:06:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-09-26T08:06:34Z</dc:date>
    <item>
      <title>Talend MDM Portal Auto-Increment &amp; DB Identity</title>
      <link>https://community.qlik.com/t5/Talend-Data-Catalog/Talend-MDM-Portal-Auto-Increment-DB-Identity/m-p/2333789#M1229</link>
      <description>&lt;P&gt;Hi -&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have a scenario wherein users can enter data into a table through the Talend MDM Portal or directly into the Table using some Talend Job. The table has a key column which is set to type 'Auto-Increment' in MDM Datamodel and we also need to have the ability to have the key incremented in DB if data is inserted through some other process.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Question : Is there a way to achieve this in Talend and letting it know to sycn up the Keys from Portal to the ones on the DB? Since we have noticed that if we insert directly into DB them Talend MDM Portal doesnt check the ID's and it is incrementing from the point when the last record was entered via the portal.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Eg:&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Entries made via Talend MDM Portal:&lt;/P&gt; 
&lt;P&gt;id &amp;nbsp;| Name&lt;/P&gt; 
&lt;P&gt;-----------&lt;/P&gt; 
&lt;P&gt;1 | w&lt;/P&gt; 
&lt;P&gt;2 | x&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;On Entry 'y' made manually into the table&lt;/P&gt; 
&lt;P&gt;id | Name&lt;/P&gt; 
&lt;P&gt;----------&lt;/P&gt; 
&lt;P&gt;1 | w&lt;/P&gt; 
&lt;P&gt;2 | x&lt;/P&gt; 
&lt;P&gt;3 | y&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Making another entry for 'z' after above via portal&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Expected Behaviour:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;id | Name&lt;/P&gt; 
&lt;P&gt;----------&lt;/P&gt; 
&lt;P&gt;1 | w&lt;/P&gt; 
&lt;P&gt;2 | x&lt;/P&gt; 
&lt;P&gt;3 | y&lt;/P&gt; 
&lt;P&gt;4 | z&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Seen Behaviour (Talend is updating the entry for 'y' that was made manually with entry that we do for z instead of inserting another record with a id of 4)&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;id | Name&lt;/P&gt; 
&lt;P&gt;----------&lt;/P&gt; 
&lt;P&gt;1 | w&lt;/P&gt; 
&lt;P&gt;2 | x&lt;/P&gt; 
&lt;P&gt;3 | z&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 09:17:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Data-Catalog/Talend-MDM-Portal-Auto-Increment-DB-Identity/m-p/2333789#M1229</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T09:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Talend MDM Portal Auto-Increment &amp; DB Identity</title>
      <link>https://community.qlik.com/t5/Talend-Data-Catalog/Talend-MDM-Portal-Auto-Increment-DB-Identity/m-p/2333790#M1230</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;HR /&gt; 
 &lt;A href="https://community.qlik.com/s/profile/0053p000007LLqRAAW"&gt;@nctalend&lt;/A&gt; wrote: 
 &lt;BR /&gt; 
 &lt;P&gt;Hi -&amp;nbsp;&lt;/P&gt; 
 &lt;P&gt;&amp;nbsp;&lt;/P&gt; 
 &lt;P&gt;I have a scenario wherein users can enter data into a table through the Talend MDM Portal or directly into the Table using some Talend Job. The table has a key column which is set to type 'Auto-Increment' in MDM Datamodel and we also need to have the ability to have the key incremented in DB if data is inserted through some other process.&lt;/P&gt; 
 &lt;P&gt;&amp;nbsp;&lt;/P&gt; 
 &lt;P&gt;Question : Is there a way to achieve this in Talend and letting it know to sycn up the Keys from Portal to the ones on the DB? Since we have noticed that if we insert directly into DB them Talend MDM Portal doesnt check the ID's and it is incrementing from the point when the last record was entered via the portal.&lt;/P&gt; 
 &lt;P&gt;&amp;nbsp;&lt;/P&gt; 
 &lt;P&gt;&amp;nbsp;&lt;/P&gt; 
 &lt;HR /&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;P&gt;Do you want to sync up your data when insert data from Web UI and DB? Here is online document about:&lt;A title="TalendHelpCenter:Managing the values of auto increments in the data container browser" href="https://help.talend.com/reader/fE51zt3EBkq3lp1Op6DPEw/Gw2qqgkdA_Jpc9nfoV9yZQ" target="_self" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter:Managing the values of auto increments in the data container browser&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2017 08:06:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Data-Catalog/Talend-MDM-Portal-Auto-Increment-DB-Identity/m-p/2333790#M1230</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-26T08:06:34Z</dc:date>
    </item>
  </channel>
</rss>

