<?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: incremental insert or refreash in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378041#M139852</link>
    <description>&lt;P&gt;main mssql db table , lookup mysql db table(the table where you want to write, so use a tdbinput with only a select of the id)&lt;/P&gt;&lt;P&gt;output mysql db table , the purpose is to check in your mysql table if id exist before writing anything inside then only insert id wich won't exist in your mysql table. much faster than update or insert&lt;/P&gt;</description>
    <pubDate>Wed, 09 Feb 2022 16:05:08 GMT</pubDate>
    <dc:creator>gjeremy1617088143</dc:creator>
    <dc:date>2022-02-09T16:05:08Z</dc:date>
    <item>
      <title>incremental insert or refreash</title>
      <link>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378036#M139847</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have MSSQL that has customer table and Primary key is Customer_ID,  TYPE: string and DB Nvarchar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000OARjFAAX.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/147206iD5880A831455E553/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000OARjFAAX.png" alt="0695b00000OARjFAAX.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have MYSQL that simple sync Column from MSSQL and PK is Customer_ID, TYPE: string and DB varchar&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000OARkRAAX.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/144851i95E1CF8189602C1E/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000OARkRAAX.png" alt="0695b00000OARkRAAX.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I want auto increment so when MSSQL have new data inserted then when I run MYSQL will have that new data only&lt;/P&gt;&lt;P&gt;Example: MSSQL have 7 data and MYSQL also have same 7 data&lt;/P&gt;&lt;P&gt;but&lt;/P&gt;&lt;P&gt;new 2 data inserted to MSSQL so when I run talend TOS MYSQL will only take those 2 data not whole 7+2 = 9 data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;following is in MYSQL settings. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000OARmmAAH.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/144612i484B724174F0F271/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000OARmmAAH.png" alt="0695b00000OARmmAAH.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When I run I see evert time all data is inserting from MSSQL to MYSQL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AS my DB type is varchar and type is sting, is it an issue?&lt;/P&gt;&lt;P&gt;I dont want to use tMAP as its very simple form MSSQL to MYSQL data moving&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:13:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378036#M139847</guid>
      <dc:creator>modara</dc:creator>
      <dc:date>2024-11-15T23:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: incremental insert or refreash</title>
      <link>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378037#M139848</link>
      <description>&lt;P&gt;hi,You have to use a tmap and make an inner join between the two table then send data to a output of the tmap with catch inner join reject set to true.&lt;/P&gt;&lt;P&gt;Then you just have to use a tDBOutput with insert option only. also it will be more efficiency than update or insert&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 15:33:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378037#M139848</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2022-02-09T15:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: incremental insert or refreash</title>
      <link>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378038#M139849</link>
      <description>&lt;P&gt;@guenneguez jeremy​&amp;nbsp;,&lt;/P&gt;&lt;P&gt;As I said I just simple copy data from one data base to another&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;as you said use tmap and two table then which way I can use another sales table for an example to join inner?&lt;/P&gt;&lt;P&gt;thx&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 15:36:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378038#M139849</guid>
      <dc:creator>modara</dc:creator>
      <dc:date>2022-02-09T15:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: incremental insert or refreash</title>
      <link>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378039#M139850</link>
      <description>&lt;P&gt;you have to  do the inner join between the table of both bdd mssql and mysql, &lt;/P&gt;&lt;P&gt;tMap is made for that, you could also use tJoin component wich is lighter you have to check the inner join checkbox and use the reject link&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 15:47:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378039#M139850</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2022-02-09T15:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: incremental insert or refreash</title>
      <link>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378040#M139851</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Sorry to ask you again.&lt;/P&gt;&lt;P&gt;for tMAP &lt;/P&gt;&lt;P&gt;i need from MSSQL then&lt;U&gt; tMAP need (two table to join)&lt;/U&gt; then copy them to MYSQL&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where I can have these two to join then one side then copy them to mysql as i have one table which is sale in mssql. for tmap i need 2 tables on left side then join them on right side then copy data to mysql &lt;/P&gt;&lt;P&gt;if i m not wrong. so please suggest me how i get another table to make tmap join&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 15:51:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378040#M139851</guid>
      <dc:creator>modara</dc:creator>
      <dc:date>2022-02-09T15:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: incremental insert or refreash</title>
      <link>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378041#M139852</link>
      <description>&lt;P&gt;main mssql db table , lookup mysql db table(the table where you want to write, so use a tdbinput with only a select of the id)&lt;/P&gt;&lt;P&gt;output mysql db table , the purpose is to check in your mysql table if id exist before writing anything inside then only insert id wich won't exist in your mysql table. much faster than update or insert&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 16:05:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378041#M139852</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2022-02-09T16:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: incremental insert or refreash</title>
      <link>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378042#M139853</link>
      <description>&lt;P&gt;would you please help me how to insert id column or how i can make it done. sorry as i said i new in this field so please help me&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 03:35:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378042#M139853</guid>
      <dc:creator>modara</dc:creator>
      <dc:date>2022-02-10T03:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: incremental insert or refreash</title>
      <link>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378043#M139854</link>
      <description>&lt;P&gt;something like this :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000OAc2GAAT.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154482iC64BC5EC1AC3BAC8/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000OAc2GAAT.jpg" alt="0695b00000OAc2GAAT.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000OAc2BAAT.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151673iB1E264CC738B08AF/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000OAc2BAAT.jpg" alt="0695b00000OAc2BAAT.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000OAc26AAD.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/146409i764E9F6FC93DDE71/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000OAc26AAD.jpg" alt="0695b00000OAc26AAD.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000OAc21AAD.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135882iFD0D064D7C13DD8A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000OAc21AAD.jpg" alt="0695b00000OAc21AAD.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 08:36:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378043#M139854</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2022-02-10T08:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: incremental insert or refreash</title>
      <link>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378044#M139855</link>
      <description>&lt;P&gt;so i have two target table one for join and other for out come&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 09:14:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378044#M139855</guid>
      <dc:creator>modara</dc:creator>
      <dc:date>2022-02-10T09:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: incremental insert or refreash</title>
      <link>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378045#M139856</link>
      <description>&lt;P&gt;it's the same, but it just you control before with a select in that your id are not in before insert&lt;/P&gt;&lt;P&gt;if i follow your example : source table have 7 data and target 5 , so you join them with tmap you catch the reject here 2 then you insert in the same table the 2 reject and finally you have 7 in source and target&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 09:26:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/incremental-insert-or-refreash/m-p/2378045#M139856</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2022-02-10T09:26:36Z</dc:date>
    </item>
  </channel>
</rss>

