<?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: Qlik Replicate | Store Changes | Capture only Changed Field in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2457577#M11298</link>
    <description>&lt;P&gt;Thank you for the information. I will review and work on it accordingly.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2024 15:57:48 GMT</pubDate>
    <dc:creator>dineshkumarl</dc:creator>
    <dc:date>2024-05-29T15:57:48Z</dc:date>
    <item>
      <title>Qlik Replicate | Store Changes | Capture only Changed Field</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2456957#M11269</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am running one store changes task with config to capture before and after changes.&lt;/P&gt;
&lt;P&gt;Data which I receive:&lt;/P&gt;
&lt;P&gt;forexample:&lt;/P&gt;
&lt;P&gt;Before Data: col1: 1, col2:ABC, col3:12A&lt;/P&gt;
&lt;P&gt;After Data:&amp;nbsp;col1: 1, col2:ABC, col3:12B&lt;/P&gt;
&lt;P&gt;Is there way to get only the changed field in Before and After Data&lt;/P&gt;
&lt;P&gt;what I need:&lt;/P&gt;
&lt;P&gt;Before Data: col3:12A&lt;/P&gt;
&lt;P&gt;After Data: col3:12B&lt;/P&gt;
&lt;P&gt;Irrespective of the column, if col2 and col3 has been changed then at result I should have only col2,col3 before and after data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Kindly assist. Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 12:43:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2456957#M11269</guid>
      <dc:creator>dineshkumarl</dc:creator>
      <dc:date>2024-05-28T12:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate | Store Changes | Capture only Changed Field</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2456981#M11271</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/205631"&gt;@dineshkumarl&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to Qlik Community!&lt;/P&gt;
&lt;P&gt;Yes, we may filter the changes columns/records by using&amp;nbsp;&lt;SPAN&gt;$BI__ , see User Guide&amp;nbsp;&lt;A title="Using a column's before-image data in a transformation" href="https://help.qlik.com/en-US/replicate/November2023/Content/Global_Common/Content/SharedEMReplicate/Customize%20Tasks/tasks_useTransTable.htm#:~:text=(Custom).-,Using%20a%20column%27s%20before%2Dimage%20data%20in%20a%20transformation,Add%20Column%20button)%20in%20which%20to%20store%20the%20before%2Dimage%20data.,-Did%20this%20page" target="_blank" rel="noopener"&gt;Using a column's before-image data in a transformation&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope it helps.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;John.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 13:30:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2456981#M11271</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2024-05-28T13:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate | Store Changes | Capture only Changed Field</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2456992#M11272</link>
      <description>&lt;P&gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;Is there way to get only the changed field in Before and After Data&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;No.&lt;/P&gt;
&lt;P&gt;Why? Auditing?&lt;/P&gt;
&lt;P&gt;What is thesource &amp;amp; target ?&amp;nbsp; There may be end point specific options/restrictions.&lt;/P&gt;
&lt;P&gt;You can figure it out, but it requires non-trivial SQL coding against the changes table.&lt;/P&gt;
&lt;P&gt;Specifically one needs to learn all about :&amp;nbsp;[header__]change_mask - varbinary (128)&lt;BR /&gt;The change mask indicates which data columns in the change table&lt;BR /&gt;are associated with columns that changed in the source table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you need to know the changes values, or just the fact it changed? The latter is easier.&lt;/P&gt;
&lt;P&gt;What do you need for insert (null + all?) and delete (all + null?)&lt;/P&gt;
&lt;P&gt;And one could also 'compare' BI and AI column by column vor each event.&lt;/P&gt;
&lt;P&gt;Search the Replicate doc for&amp;nbsp;changeMask,&amp;nbsp;change_Mask&amp;nbsp; and columnmask&lt;/P&gt;
&lt;P&gt;Hein.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 13:57:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2456992#M11272</guid>
      <dc:creator>Heinvandenheuvel</dc:creator>
      <dc:date>2024-05-28T13:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate | Store Changes | Capture only Changed Field</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2457391#M11290</link>
      <description>&lt;P&gt;Hi Hein,&lt;/P&gt;
&lt;P&gt;Yes, it's for Auditing. My Source is oracle and target is Kafka. I have enabled header_change_mask before posting question in my task. I either see null values or random character in that column.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 10:19:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2457391#M11290</guid>
      <dc:creator>dineshkumarl</dc:creator>
      <dc:date>2024-05-29T10:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate | Store Changes | Capture only Changed Field</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2457392#M11291</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As per your information, I have created one new column and added expression $BI__$mycolumn in expression builder. However, I do not see any changes post that for that specific table. Let me know if I am missing something here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 10:20:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2457392#M11291</guid>
      <dc:creator>dineshkumarl</dc:creator>
      <dc:date>2024-05-29T10:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate | Store Changes | Capture only Changed Field</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2457505#M11295</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/205631"&gt;@dineshkumarl&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I greatly agree with&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/110970"&gt;@Heinvandenheuvel&lt;/a&gt;&amp;nbsp;, if it's hard to 'remove' the un-changed columns then let's keep all columns in the target table but create a view and use '&lt;SPAN&gt;changeMask,&amp;nbsp;change_Mask&amp;nbsp; and columnmask' to 'hide' the un-changed columns.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;John.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 13:17:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2457505#M11295</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2024-05-29T13:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate | Store Changes | Capture only Changed Field</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2457508#M11296</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/205631"&gt;@dineshkumarl&lt;/a&gt;&amp;nbsp; "&lt;SPAN&gt;.&lt;EM&gt; I either see null values or random character in that column&lt;/EM&gt;."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Did you read the documentation?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;That's not random - of course it is not, nothing is random - it is just a difficult to interpret bit mask indicating which columns changes as per documentation.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp;have created one new column and added expression $BI__$mycolumn in expression builder. However, I do not see any changes post that for that specific table&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You would have to do so for each and every column and subsequently compare BI and AI.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;My advice to you is to go back to the business folks and explain this it can be done but it is a sh*t load of work. Are they ready to pay for that, or can they review their needs and clarify exactly what is needed at what time intervals. Maybe they only care about 2 or 3 columns but failed to say so?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Maybe the only need a weekly report and you can just use the change tables to compare.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Maybe the don't need anything except the re-assurance that you can research for a particual username or object ID on request.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;So much of auditing data is never ever looked at in reality, that there is no need to make a nice and tidy structure for it. It will take 4 manweek to create such structure and it might only take an hour to investigate an incident without structure. Their choice!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hein&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 13:23:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2457508#M11296</guid>
      <dc:creator>Heinvandenheuvel</dc:creator>
      <dc:date>2024-05-29T13:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate | Store Changes | Capture only Changed Field</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2457577#M11298</link>
      <description>&lt;P&gt;Thank you for the information. I will review and work on it accordingly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 15:57:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Qlik-Replicate-Store-Changes-Capture-only-Changed-Field/m-p/2457577#M11298</guid>
      <dc:creator>dineshkumarl</dc:creator>
      <dc:date>2024-05-29T15:57:48Z</dc:date>
    </item>
  </channel>
</rss>

