<?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: How to capture Insert , update ,delete in Qlik replicate in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128239#M7716</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/238493"&gt;@AnujGupta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;The previous samples based on MySQL Source and SQL Server target. do you mind to share the source/target endpoint types and what's the SQL you used to do insert/update/delete in source table? I'd like to confirm for you.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Oct 2023 07:36:57 GMT</pubDate>
    <dc:creator>john_wang</dc:creator>
    <dc:date>2023-10-13T07:36:57Z</dc:date>
    <item>
      <title>How to capture Insert , update ,delete in Qlik replicate</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128219#M7713</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am looking to store insert , update &amp;amp; delete in a column called&amp;nbsp;DELETED_FLAG =&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CASE &lt;BR /&gt;WHEN operation_indicator("Y", "N", "N") = "Y" THEN 'Update'&lt;BR /&gt;WHEN operation_indicator("N", "Y", "N") = "Y" THEN 'Insert'&lt;BR /&gt;ELSE 'Delete'&lt;BR /&gt;END&lt;/P&gt;
&lt;P&gt;In change processing, I have only&amp;nbsp;&lt;SPAN&gt;Apply Changes Processing is ON. when I gave below expression,&amp;nbsp;I am only seeing delete.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AnujGupta_0-1697180634668.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/118168i284B4D79CA13B397/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AnujGupta_0-1697180634668.png" alt="AnujGupta_0-1697180634668.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 07:04:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128219#M7713</guid>
      <dc:creator>AnujGupta</dc:creator>
      <dc:date>2023-10-13T07:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture Insert , update ,delete in Qlik replicate</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128228#M7714</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/238493"&gt;@AnujGupta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;If I read correctly, you want to store the operation in a dedicated flag column, let's call it "OPER". Then you may do it simply by add a new column with expression:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;operation_indicator('Delete','Update','Insert')&lt;/FONT&gt;, the sample:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="john_wang_0-1697181538281.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/118170i79DCC7CFED08383E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="john_wang_0-1697181538281.png" alt="john_wang_0-1697181538281.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The result in SQL Server:&lt;/P&gt;
&lt;DIV id="tinyMceEditor_29bc8101bb9e49john_wang_1" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="john_wang_2-1697181586757.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/118172iE55A3E3E2EBB34FF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="john_wang_2-1697181586757.png" alt="john_wang_2-1697181586757.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Please ignore the NULL rows as they are Full Load rows (which I did not disable the Full Load).&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 07:20:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128228#M7714</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2023-10-13T07:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture Insert , update ,delete in Qlik replicate</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128236#M7715</link>
      <description>&lt;P&gt;Hi John,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tried the same below but only insert I can able to see.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AnujGupta_0-1697182264769.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/118175iFC5E1FE9073C9402/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AnujGupta_0-1697182264769.png" alt="AnujGupta_0-1697182264769.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;where as delete and update also happening in source side.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AnujGupta_1-1697182318354.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/118176i74C4866306F55765/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AnujGupta_1-1697182318354.png" alt="AnujGupta_1-1697182318354.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 07:32:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128236#M7715</guid>
      <dc:creator>AnujGupta</dc:creator>
      <dc:date>2023-10-13T07:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture Insert , update ,delete in Qlik replicate</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128239#M7716</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/238493"&gt;@AnujGupta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;The previous samples based on MySQL Source and SQL Server target. do you mind to share the source/target endpoint types and what's the SQL you used to do insert/update/delete in source table? I'd like to confirm for you.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 07:36:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128239#M7716</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2023-10-13T07:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture Insert , update ,delete in Qlik replicate</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128241#M7717</link>
      <description>&lt;P&gt;Source as a Oracle, destination as data bricks meta store table.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 07:38:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128241#M7717</guid>
      <dc:creator>AnujGupta</dc:creator>
      <dc:date>2023-10-13T07:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture Insert , update ,delete in Qlik replicate</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128507#M7729</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/238493"&gt;@AnujGupta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I got challenge while I was provisioning Databricks environment today, I will work with IT team on that next week, Seems it's hard to confirm the behavior for you today. please work with Qlik support team (support case #&lt;SPAN&gt;00118262&lt;/SPAN&gt;)&amp;nbsp; on this issue and Support team would like to help you further.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2023 07:54:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2128507#M7729</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2023-10-14T07:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture Insert , update ,delete in Qlik replicate</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2131452#M7835</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/238493"&gt;@AnujGupta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Looks to me the expression works fine in Databricks target task (Oracle is source):&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;operation_indicator('Delete','Update','Insert')&lt;/FONT&gt;&lt;SPAN&gt;, the task is FL + Store Changes. The result contains the 3 types of operations:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="john_wang_0-1698161943879.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/118794i8BAEC189701DEC1F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="john_wang_0-1698161943879.png" alt="john_wang_0-1698161943879.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If you are still facing the issue, please upload the task Diagnostics Packages to support case.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 15:40:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-to-capture-Insert-update-delete-in-Qlik-replicate/m-p/2131452#M7835</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2023-10-24T15:40:03Z</dc:date>
    </item>
  </channel>
</rss>

