<?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: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario) in Qlik Compose</title>
    <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540245#M2052</link>
    <description>&lt;P&gt;I really don't want to waste your precious time, but here is the full video showing what I'm setting up and how it turns out in the end. Video Demonstration: &lt;A href="https://youtu.be/jA1dnwi--UQ" target="_blank"&gt;https://youtu.be/jA1dnwi--UQ&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;model in DWH is&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="korsikov_0-1767648360023.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186081iEA60E0AD41D1F77D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="korsikov_0-1767648360023.png" alt="korsikov_0-1767648360023.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 05 Jan 2026 21:26:18 GMT</pubDate>
    <dc:creator>korsikov</dc:creator>
    <dc:date>2026-01-05T21:26:18Z</dc:date>
    <item>
      <title>SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2539997#M2044</link>
      <description>&lt;P&gt;&lt;BR /&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Video Demonstration:&lt;/STRONG&gt; &lt;A href="https://youtu.be/jA1dnwi--UQ" target="_blank" rel="noopener"&gt;https://youtu.be/jA1dnwi--UQ&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Problem Overview&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I am encountering an issue where accumulated &lt;STRONG&gt;SCD Type 2 history&lt;/STRONG&gt; in the Data Warehouse (DWH) is completely wiped out after performing a &lt;STRONG&gt;Full Load&lt;/STRONG&gt; in Qlik Compose. This happens in a specific scenario where the source system drops and recreates tables during software updates, changing the &lt;STRONG&gt;Object ID&lt;/STRONG&gt; and requiring a re-sync.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The Scenario&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Source: MS&amp;nbsp;&lt;/STRONG&gt; SQL Server.&amp;nbsp; Table w/o PK, Index avalable - use MS-CDC&lt;/P&gt;&lt;DIV&gt;USE [mysource]&lt;/DIV&gt;&lt;DIV&gt;GO&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;/****** Object:&amp;nbsp; Table [dbo].[t1]&amp;nbsp; &amp;nbsp; Script Date: 30.12.2025 15:33:52 ******/&lt;/DIV&gt;&lt;DIV&gt;SET ANSI_NULLS ON&lt;/DIV&gt;&lt;DIV&gt;GO&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;SET QUOTED_IDENTIFIER ON&lt;/DIV&gt;&lt;DIV&gt;GO&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;CREATE TABLE [dbo].[t1](&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[key_id] [nchar](10) NOT NULL,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[index] [nvarchar](50) NULL,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[data] [nvarchar](255) NULL&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;) ON [PRIMARY]&lt;/DIV&gt;&lt;DIV&gt;GO&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;CDC/Ingestion:&lt;/STRONG&gt; Qlik Replicate with Global Transformation rules to capture Commit Timestamp and Operation Type. and add&amp;nbsp; two field&lt;BR /&gt;&lt;STRONG&gt;Operation&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;CASE&lt;BR /&gt;WHEN $AR_H_STREAM_POSITION = ''&lt;BR /&gt;THEN NULL&lt;BR /&gt;ELSE operation_indicator("d", "u", "i" )&lt;BR /&gt;END&lt;BR /&gt;&lt;STRONG&gt;OperationDateTime&lt;BR /&gt;&lt;/STRONG&gt;&lt;BR /&gt;CASE WHEN&lt;BR /&gt;operation_indicator("Y","Y","Y") = 'Y'&lt;BR /&gt;THEN&lt;BR /&gt;$AR_H_COMMIT_TIMESTAMP&lt;BR /&gt;ELSE NULL END&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;DWH Automation:&lt;/STRONG&gt; Qlik Compose with a field (e.g., data) set to &lt;STRONG&gt;History Type 2&lt;/STRONG&gt; to track changes over time.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Steps to Reproduce&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Initial Setup:&lt;/STRONG&gt; Perform an initial full load to DWH. After that&amp;nbsp;make&amp;nbsp; several updates (e.g., update2, update3, update4) to build a history and run CDC task in Qlik Compose&amp;nbsp; of the record in the DWH.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Verify History:&lt;/STRONG&gt; At this stage, the DWH correctly shows multiple historical rows with valid From Date and To Date intervals for value in data&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Source Change:&lt;/STRONG&gt; Simulate a source software update where the table is renamed/recreated, resulting in a new &lt;STRONG&gt;Object ID&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Full Load:&lt;/STRONG&gt; Re-run the &lt;STRONG&gt;Full Load&lt;/STRONG&gt; task in Qlik Compose to synchronize with the "new" source table.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;STRONG&gt;The Issue (Actual Result)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;After the Full Load finishes, all intermediate historical records (the update versions) are deleted from the DWH table. Only the very first record (initial load) and the latest record from the recent Full Load remain. All historical context in between is lost.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Questions for the Community&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Is this "history wiping" expected behavior during a Full Load for SCD Type 2 tables in Qlik Compose?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;How can I perform a Full Load from a recreated source table while &lt;STRONG&gt;preserving&lt;/STRONG&gt; the existing historical rows already stored in the DWH?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Are there specific &lt;STRONG&gt;History Settings&lt;/STRONG&gt; or &lt;STRONG&gt;Task Settings&lt;/STRONG&gt; in Compose that allow "appending" or "merging" new Full Load data into existing Type 2 history without deleting intermediate states?&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 30 Dec 2025 13:37:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2539997#M2044</guid>
      <dc:creator>korsikov</dc:creator>
      <dc:date>2025-12-30T13:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540236#M2046</link>
      <description>&lt;P&gt;When you run a full load in Compose - it doesn't truncate and reload data.&amp;nbsp; It performs a comparison between the source and the target data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You state the 'ObjectID' changes.&amp;nbsp; I assume you mean the internal database object_id ?&amp;nbsp; (like in SQL Server - which wouldn't matter to Compose).&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;When this occurs as you stated, you need to reload Replicate due to the objectid changing in the source system.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But for Compose its performing a SELECT * FROM MYTABLE - it has no knowledge of the object ids in the source nor in the 'landing' where it processes data from.&amp;nbsp; if you run a FULL LOAD task in Compose it does not truncate or typically wipe history.&amp;nbsp; Now - where there could be a difference is if you mapped the FROM DATE field from your source..&lt;/P&gt;
&lt;P&gt;Where Compose does 'wipe' history - if there is back-dated data in there, then Compose will re-correct / re-apply the history for that specific KEY (natural key).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that is what you are doing with the operation date - I'm curious why you would not leave the FROM-DATE and it would be mapped automatically to the from date that Replicate provides during CDC processing, and mapped from the runtime of the FULL LOAD task during full load processing&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 19:54:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540236#M2046</guid>
      <dc:creator>TimGarrod</dc:creator>
      <dc:date>2026-01-05T19:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540238#M2047</link>
      <description>&lt;P&gt;Hello Tim,&lt;/P&gt;&lt;P&gt;Thank you for your attention to my issue.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;Yes i mean&amp;nbsp;object_id for new tables in source MS SQL system.&amp;nbsp;&lt;BR /&gt;Can you explane little bit more about FROM-DATE. May be some example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 20:33:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540238#M2047</guid>
      <dc:creator>korsikov</dc:creator>
      <dc:date>2026-01-05T20:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540239#M2048</link>
      <description>&lt;P&gt;in your Compose mappings do you have the FD mapped ?&amp;nbsp; FD = From date - which is the from for the type 2 processing.&amp;nbsp; Typically this is NOT mapped in Compose and a full load uses the 'current date' - and thus does not remove history.&amp;nbsp; However, if you have it mapped and its getting a null or back-date that could explain why you 'lose' history&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 20:51:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540239#M2048</guid>
      <dc:creator>TimGarrod</dc:creator>
      <dc:date>2026-01-05T20:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540240#M2049</link>
      <description>&lt;P&gt;How can I track deletions in this case? Should I just use a soft delete approach like in this document?&lt;BR /&gt;&lt;A href="https://community.qlik.com/cyjdu72974/attachments/cyjdu72974/qlik-support-knowledge-base/5312/3/Qlik_WhitePaper_Deletes_in_C4DW-FINAL_v2.pdf" target="_blank"&gt;https://community.qlik.com/cyjdu72974/attachments/cyjdu72974/qlik-support-knowledge-base/5312/3/Qlik_WhitePaper_Deletes_in_C4DW-FINAL_v2.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Why i'm use operationdatetime - because in some cases in source system software not update record. Delete it and insert new one with the same id.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 20:52:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540240#M2049</guid>
      <dc:creator>korsikov</dc:creator>
      <dc:date>2026-01-05T20:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540242#M2050</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="korsikov_0-1767646695786.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186080iA6E87F743C28B817/image-size/medium?v=v2&amp;amp;px=400" role="button" title="korsikov_0-1767646695786.png" alt="korsikov_0-1767646695786.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here is my mapping&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 20:58:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540242#M2050</guid>
      <dc:creator>korsikov</dc:creator>
      <dc:date>2026-01-05T20:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540243#M2051</link>
      <description>&lt;P&gt;What does the model look like ?&amp;nbsp; &amp;nbsp;Did you set this to be a type 2 structure in the model. ?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;the good news - you haven't mapped the FD date.&amp;nbsp; So you are doing the default behavior.&amp;nbsp; So Compose should not be removing your 'type 2' history here.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 21:16:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540243#M2051</guid>
      <dc:creator>TimGarrod</dc:creator>
      <dc:date>2026-01-05T21:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540245#M2052</link>
      <description>&lt;P&gt;I really don't want to waste your precious time, but here is the full video showing what I'm setting up and how it turns out in the end. Video Demonstration: &lt;A href="https://youtu.be/jA1dnwi--UQ" target="_blank"&gt;https://youtu.be/jA1dnwi--UQ&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;model in DWH is&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="korsikov_0-1767648360023.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186081iEA60E0AD41D1F77D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="korsikov_0-1767648360023.png" alt="korsikov_0-1767648360023.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 21:26:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540245#M2052</guid>
      <dc:creator>korsikov</dc:creator>
      <dc:date>2026-01-05T21:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540250#M2053</link>
      <description>&lt;P&gt;Ok - so the issue is a date / datetime issue between your source and your Compose server is my guess.&lt;BR /&gt;&lt;BR /&gt;Note in your video - the Type 2 time stamps are 2025-12-30 14:36&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimGarrod_0-1767649718712.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186082i09B8B02E55ED33AB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TimGarrod_0-1767649718712.png" alt="TimGarrod_0-1767649718712.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;THEN, after you processed the date, the FD for the new record now is - 12:40&lt;BR /&gt;This is the back-dating behavior in Compose.&amp;nbsp; Where for a full load, we don't know what the time of change is - so we use a project setting to determine whether to use UTC or local servertime.&amp;nbsp; I suspect you have a setting that does not match how Replicate operates.&amp;nbsp; (Replicate typically uses UTC time for the header dates).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimGarrod_1-1767649775799.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186083i94320CDB6012A73E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TimGarrod_1-1767649775799.png" alt="TimGarrod_1-1767649775799.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What do you have set in Compose for the project settings for&amp;nbsp; the below :&amp;nbsp; Current Time Convention .&amp;nbsp; Replicate FROM dates are typically in UTC - so you should make sure you have UTC selected in your project.&amp;nbsp; Otherwise, Compose is seeing an earlier FROM DATE - and thus thinking you are reprocessing data and it wipes out 'future' history.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimGarrod_2-1767649864201.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186084i33E3BFC5224D12E4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TimGarrod_2-1767649864201.png" alt="TimGarrod_2-1767649864201.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>Mon, 05 Jan 2026 21:52:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540250#M2053</guid>
      <dc:creator>TimGarrod</dc:creator>
      <dc:date>2026-01-05T21:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540326#M2054</link>
      <description>&lt;P&gt;Qlik Replicate and Qlik Compose installed on the same machine.&amp;nbsp;&lt;BR /&gt;All Database located in the same DB Server.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In Compose project Current time convention set to&amp;nbsp;&lt;STRONG&gt;Current time in UTC&amp;nbsp;&lt;/STRONG&gt;(by default)&lt;BR /&gt;I try add few update's and what i see in t1_ct table&lt;BR /&gt;&lt;STRONG&gt;header__timestamp&lt;/STRONG&gt; -&amp;nbsp;2026-01-06 19:55:36.623000 --this is my localtime&amp;nbsp;&lt;BR /&gt;--but &lt;STRONG&gt;operationdatetime&lt;/STRONG&gt;&amp;nbsp;has&amp;nbsp; 2026-01-06 21:55:27.947000 it's my local time UTC+2&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="korsikov_0-1767723754110.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186109iFD250BA086715FF3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="korsikov_0-1767723754110.png" alt="korsikov_0-1767723754110.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;operationdatetime&lt;/STRONG&gt;&amp;nbsp; expresion is&amp;nbsp;&lt;BR /&gt;CASE WHEN&lt;BR /&gt;operation_indicator("Y","Y","Y") = 'Y'&lt;BR /&gt;THEN&lt;BR /&gt;$AR_H_COMMIT_TIMESTAMP&lt;BR /&gt;ELSE NULL END&lt;BR /&gt;&lt;BR /&gt;I don't know why&amp;nbsp; in&amp;nbsp;&lt;STRONG&gt;header__timestamp&amp;nbsp;&lt;/STRONG&gt;i see localtime not UTC&amp;nbsp;. I try fix it&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Ok, let's run CDC task in Compose.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="korsikov_1-1767723808995.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186110i95170B90239910CA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="korsikov_1-1767723808995.png" alt="korsikov_1-1767723808995.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="korsikov_2-1767723820619.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186111i428CF4B185E904AA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="korsikov_2-1767723820619.png" alt="korsikov_2-1767723820619.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jan 2026 20:23:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540326#M2054</guid>
      <dc:creator>korsikov</dc:creator>
      <dc:date>2026-01-06T20:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540327#M2055</link>
      <description>&lt;P&gt;ok - so my suggestion was backwards.&amp;nbsp; Sorry - doing this on text and not in person.&amp;nbsp; &amp;nbsp;So all the header timestamps are using local time - so you should set Compose to use local server time (not UTC).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jan 2026 20:38:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540327#M2055</guid>
      <dc:creator>TimGarrod</dc:creator>
      <dc:date>2026-01-06T20:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540330#M2056</link>
      <description>&lt;P&gt;thanks a lot for attention to my issue. I will check everything again.&amp;nbsp;the OperationDatetime in feature. I think it's will be fixed anyway.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;unfortunalty problem is not solved.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;it's chagnes in t1_ct table&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="korsikov_0-1767737836106.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186113i42EFDEE0C25E5076/image-size/medium?v=v2&amp;amp;px=400" role="button" title="korsikov_0-1767737836106.png" alt="korsikov_0-1767737836106.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this table [TDWH_t1_S01] is after Compose_CDC task&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="korsikov_1-1767737854153.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186114i6D0B17FCAAFD148F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="korsikov_1-1767737854153.png" alt="korsikov_1-1767737854153.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;run reload table in Replicate and after that immediately run Compose Full_Load Task with handle dublicate.&amp;nbsp;&lt;/P&gt;&lt;P&gt;and what i see now again. I see only FullLoad data. all update between Replicate FullLoad are missed.&amp;nbsp; Only data what loaded by FullLoad only with handle Dublicate enabled.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note. FD and TD time now in UTC&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="korsikov_2-1767737989060.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186115i8BD2590EDAAC8AE0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="korsikov_2-1767737989060.png" alt="korsikov_2-1767737989060.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;i think i miss something important.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jan 2026 22:26:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540330#M2056</guid>
      <dc:creator>korsikov</dc:creator>
      <dc:date>2026-01-06T22:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540338#M2057</link>
      <description>&lt;P&gt;Reset my DWH project and Try again.&amp;nbsp;&lt;BR /&gt;It's works only in this way.&amp;nbsp;&lt;BR /&gt;If I want to make FullReload table in replicate i need.&amp;nbsp;&lt;BR /&gt;Stop relicate CDC task.&amp;nbsp;&lt;BR /&gt;Run Compose_CDC task&amp;nbsp;&lt;BR /&gt;Make ONLY Reload table in Replicate. CDC task in replicate must be stoped.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Run Compose_FullLoad task with handle dublicate.&amp;nbsp;&lt;BR /&gt;After that resume Replicate CDC task&lt;BR /&gt;And run Compose_CDC TASK&lt;BR /&gt;&lt;BR /&gt;if Replicate CDC task catch any update after Fullreload&amp;nbsp; -&amp;nbsp;Compose_FullLoad task with handle dublicate load lasted data in DWH. And After&amp;nbsp;Compose_CDC TASK i see uncorrect date&amp;nbsp;&lt;BR /&gt;see to FD-TD for abc3 value&amp;nbsp;&lt;BR /&gt;read - after&amp;nbsp;Compose_FullLoad task with handle dublicate&amp;nbsp;&lt;BR /&gt;green&amp;nbsp;After&amp;nbsp;Compose_CDC TASK&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="korsikov_0-1767739580850.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186116i43745C466569CB63/image-size/medium?v=v2&amp;amp;px=400" role="button" title="korsikov_0-1767739580850.png" alt="korsikov_0-1767739580850.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and here is correct order in ct table&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="korsikov_1-1767739611612.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186117i9054745137FA52DE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="korsikov_1-1767739611612.png" alt="korsikov_1-1767739611612.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jan 2026 22:47:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540338#M2057</guid>
      <dc:creator>korsikov</dc:creator>
      <dc:date>2026-01-06T22:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 History Lost in Qlik Compose after Full Load (Source Table Re-creation Scenario)</title>
      <link>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540672#M2058</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/109210"&gt;@TimGarrod&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks a lot for your attention to my case. I'm check on two enviroment from scatch. Yes - my root problem was&amp;nbsp;&lt;SPAN&gt;header timestamps are using local time - so I should set Compose to use local server time&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2026 11:10:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Compose/SCD-Type-2-History-Lost-in-Qlik-Compose-after-Full-Load-Source/m-p/2540672#M2058</guid>
      <dc:creator>korsikov</dc:creator>
      <dc:date>2026-01-12T11:10:19Z</dc:date>
    </item>
  </channel>
</rss>

