<?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>article Filter for last 90 days of data in Qlik Replicate in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/ta-p/1880761</link>
    <description>&lt;P&gt;This article references two options for filtering the last 90 days worth of data on a date column in Qlik Replicate.&lt;/P&gt;
&lt;P&gt;Additionally, the goal is to show a working example of full load pass thru vs record selection condition so users can adjust filters to different types or conditions.&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT size="4" color="#339966"&gt;Option 1: Full load passthru&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;The full load pass thru filter is more efficient since it filters directly on the source. For this to work, you need to use the exact syntax of the source database. It can only be applied to full load tasks, not change data capture mode.&lt;/P&gt;
&lt;P&gt;Example with Oracle source where &lt;FONT face="courier new,courier"&gt;START_TRAN_DATE&lt;/FONT&gt; is of type &lt;FONT face="courier new,courier"&gt;DATE&lt;/FONT&gt;:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;START_TRAN_DATE &amp;gt; sysdate - 90&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;To open with Full load Passthru available:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Select the table you want to filter on in the &lt;STRONG&gt;Designer&amp;nbsp;&lt;/STRONG&gt;tab&lt;/LI&gt;
&lt;LI&gt;Hit &lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;CTRL&lt;/STRONG&gt; &lt;/FONT&gt;+ &lt;STRONG&gt;Table Settings&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="helvetica"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 992px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/70159i76F9EF2E48B91FA8/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Click okay and save your task.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you see the error:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Table 'x' cannot be reloaded because a passthrough filter is defined for it. Passthrough filters allow task designers to control SQL statements executed on source database tables during replication. To continue using passthrough filters, you must explicitly set "enable_passthrough_filter" to true in the "C:\Program Files\Attunity\Replicate\bin\repctl.cfg" file. Otherwise, remove the passthrough filter from this table and any other tables defined with passthrough filters. [1020439] (endpointshell.c:3716)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Then:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open &lt;FONT face="courier new,courier"&gt;C:\Program Files\Attunity\Replicate\bin\repctl.cfg&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Add: &lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"enable_passthrough_filter": true&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Restart the Qlik Replicate Server service.&amp;nbsp;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H4&gt;&lt;FONT size="4" color="#339966"&gt;&lt;STRONG&gt;Option 2: Record Selection Condition&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;This option can be used for full load and change data capture task but is not as efficient for large tables as full load passthru.&amp;nbsp; It does not have to be the exact syntax of the source, i.e the example below can work on many sources.&amp;nbsp; This is because the filter condition function is an SQLite function within Replicate.&lt;/P&gt;
&lt;P&gt;An example where &lt;FONT face="courier new,courier"&gt;START_TRAN_DATE&lt;/FONT&gt; is of type &lt;FONT face="courier new,courier" color="#339966"&gt;DATE&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;$START_TRAN_DATE &amp;gt;= DateTime('Now', 'LocalTime', '-90 Day')&lt;/FONT&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Go to&amp;nbsp;&lt;STRONG&gt;Task Designer &lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Open T&lt;STRONG&gt;able Settings &lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Click &lt;STRONG&gt;Filter &lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Choose &lt;STRONG&gt;Expression Builder&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;Fill out 1: Build Expression with: &lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;$START_TRAN_DATE &amp;gt;= DateTime('Now', 'LocalTime', '-90 Day')&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Click &lt;STRONG&gt;Parse Expression&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Fill out 2: Parse Expression with: &lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;2021-10-13 23:47:56&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Click &lt;STRONG&gt;Test Expression&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;This should return &lt;FONT face="courier new,courier"&gt;0&lt;/FONT&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.png" style="width: 900px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/70160i0973CB753E1BEA88/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Fill out 2: Parse Expression with:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;2021-12-13 23:47:56&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Click &lt;STRONG&gt;Test Expression&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;This should return &lt;FONT face="courier new,courier"&gt;1&lt;/FONT&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.png" style="width: 901px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/70161iDB630144D17CD512/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.png" alt="3.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;&lt;SPAN&gt;Click &lt;STRONG&gt;OK&lt;/STRONG&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;H4&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4.png" style="width: 987px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/70162i461D65236EE45448/image-size/large?v=v2&amp;amp;px=999" role="button" title="4.png" alt="4.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/H4&gt;
&lt;/LI&gt;
&lt;LI&gt;Save your task&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Related Content:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;A href="https://community.qlik.com/t5/Knowledge/Filter-for-last-90-days-of-data-in-Qlik-Replicate-part-two/ta-p/1980009" target="_blank" rel="noopener"&gt;Filter for last 90 days part two with postgres example&lt;/A&gt;&lt;/P&gt;
&lt;H4&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;LI-PRODUCT title="Qlik Replicate" id="qlikReplicate"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;The information in this article is provided as-is and to be used at own discretion. Depending on tool(s) used, customization(s), and/or other factors ongoing support on the solution below may not be provided by Qlik Support.&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jul 2024 07:33:03 GMT</pubDate>
    <dc:creator>KellyHobson</dc:creator>
    <dc:date>2024-07-09T07:33:03Z</dc:date>
    <item>
      <title>Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/ta-p/1880761</link>
      <description>&lt;P&gt;This article references two options for filtering the last 90 days worth of data on a date column in Qlik Replicate.&lt;/P&gt;
&lt;P&gt;Additionally, the goal is to show a working example of full load pass thru vs record selection condition so users can adjust filters to different types or conditions.&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT size="4" color="#339966"&gt;Option 1: Full load passthru&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;The full load pass thru filter is more efficient since it filters directly on the source. For this to work, you need to use the exact syntax of the source database. It can only be applied to full load tasks, not change data capture mode.&lt;/P&gt;
&lt;P&gt;Example with Oracle source where &lt;FONT face="courier new,courier"&gt;START_TRAN_DATE&lt;/FONT&gt; is of type &lt;FONT face="courier new,courier"&gt;DATE&lt;/FONT&gt;:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;START_TRAN_DATE &amp;gt; sysdate - 90&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;To open with Full load Passthru available:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Select the table you want to filter on in the &lt;STRONG&gt;Designer&amp;nbsp;&lt;/STRONG&gt;tab&lt;/LI&gt;
&lt;LI&gt;Hit &lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;CTRL&lt;/STRONG&gt; &lt;/FONT&gt;+ &lt;STRONG&gt;Table Settings&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="helvetica"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 992px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/70159i76F9EF2E48B91FA8/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Click okay and save your task.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you see the error:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Table 'x' cannot be reloaded because a passthrough filter is defined for it. Passthrough filters allow task designers to control SQL statements executed on source database tables during replication. To continue using passthrough filters, you must explicitly set "enable_passthrough_filter" to true in the "C:\Program Files\Attunity\Replicate\bin\repctl.cfg" file. Otherwise, remove the passthrough filter from this table and any other tables defined with passthrough filters. [1020439] (endpointshell.c:3716)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Then:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open &lt;FONT face="courier new,courier"&gt;C:\Program Files\Attunity\Replicate\bin\repctl.cfg&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Add: &lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"enable_passthrough_filter": true&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Restart the Qlik Replicate Server service.&amp;nbsp;&lt;/LI&gt;
&lt;/OL&gt;
&lt;H4&gt;&lt;FONT size="4" color="#339966"&gt;&lt;STRONG&gt;Option 2: Record Selection Condition&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;This option can be used for full load and change data capture task but is not as efficient for large tables as full load passthru.&amp;nbsp; It does not have to be the exact syntax of the source, i.e the example below can work on many sources.&amp;nbsp; This is because the filter condition function is an SQLite function within Replicate.&lt;/P&gt;
&lt;P&gt;An example where &lt;FONT face="courier new,courier"&gt;START_TRAN_DATE&lt;/FONT&gt; is of type &lt;FONT face="courier new,courier" color="#339966"&gt;DATE&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;$START_TRAN_DATE &amp;gt;= DateTime('Now', 'LocalTime', '-90 Day')&lt;/FONT&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Go to&amp;nbsp;&lt;STRONG&gt;Task Designer &lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Open T&lt;STRONG&gt;able Settings &lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Click &lt;STRONG&gt;Filter &lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Choose &lt;STRONG&gt;Expression Builder&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;
&lt;OL class="lia-list-style-type-lower-alpha"&gt;
&lt;LI&gt;Fill out 1: Build Expression with: &lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;$START_TRAN_DATE &amp;gt;= DateTime('Now', 'LocalTime', '-90 Day')&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Click &lt;STRONG&gt;Parse Expression&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Fill out 2: Parse Expression with: &lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;2021-10-13 23:47:56&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Click &lt;STRONG&gt;Test Expression&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;This should return &lt;FONT face="courier new,courier"&gt;0&lt;/FONT&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.png" style="width: 900px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/70160i0973CB753E1BEA88/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Fill out 2: Parse Expression with:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;2021-12-13 23:47:56&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Click &lt;STRONG&gt;Test Expression&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;This should return &lt;FONT face="courier new,courier"&gt;1&lt;/FONT&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.png" style="width: 901px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/70161iDB630144D17CD512/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.png" alt="3.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;&lt;SPAN&gt;Click &lt;STRONG&gt;OK&lt;/STRONG&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;H4&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4.png" style="width: 987px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/70162i461D65236EE45448/image-size/large?v=v2&amp;amp;px=999" role="button" title="4.png" alt="4.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/H4&gt;
&lt;/LI&gt;
&lt;LI&gt;Save your task&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Related Content:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;A href="https://community.qlik.com/t5/Knowledge/Filter-for-last-90-days-of-data-in-Qlik-Replicate-part-two/ta-p/1980009" target="_blank" rel="noopener"&gt;Filter for last 90 days part two with postgres example&lt;/A&gt;&lt;/P&gt;
&lt;H4&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;LI-PRODUCT title="Qlik Replicate" id="qlikReplicate"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;The information in this article is provided as-is and to be used at own discretion. Depending on tool(s) used, customization(s), and/or other factors ongoing support on the solution below may not be provided by Qlik Support.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 07:33:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/ta-p/1880761</guid>
      <dc:creator>KellyHobson</dc:creator>
      <dc:date>2024-07-09T07:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1897256#M5646</link>
      <description>&lt;P&gt;Is there a place in log where one can see whether replicate uses&amp;nbsp;&lt;SPAN&gt;"enable_passthrough_filter": true or not? . How do I know whether replicate process uses latest changes from repctl.cfg file?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 16:04:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1897256#M5646</guid>
      <dc:creator>S_Ravi</dc:creator>
      <dc:date>2022-02-24T16:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1900659#M5696</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/159435"&gt;@S_Ravi&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;I reached out to a subject matter expert for you and have an answer for you:&lt;/P&gt;
&lt;P&gt;If&amp;nbsp;&lt;SPAN&gt;"enable_passthrough_filter" is set to true, then (in the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;passthrough builder there is an expression) this message is written in the log:&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;2022-03-03T19:34:05:966289 [SOURCE_UNLOAD ]I: Table 'SCOTT.KIT' is unloaded using the passthrough filter expression 'ID &amp;gt; 2' (endpointshell.c:3783)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2022 14:47:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1900659#M5696</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2022-03-03T14:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1903163#M5798</link>
      <description>&lt;P&gt;I was wondering why the passthrough filter is not enabled by default and I found this comment by&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/115309"&gt;@john_wang&lt;/a&gt;&amp;nbsp;in this post:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1789508/highlight/true#M791" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1789508/highlight/true#M791&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Quote:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;SPAN&gt;A recent product hardening change to Replicate has the passthrough feature turned off by default. When disabled, using passthrough filters will cause the replication task to fail when trying to reload a table for which a passthrough filter is defined. While the passthrough filter feature can be re-enabled, it is not recommended if the user configured for the source endpoint has update permissions on the source database. An alternative approach is to use a view in the source database to implement the filter.&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If the passthrough filter is enabled, what could happen in the worst case?&lt;/P&gt;
&lt;P&gt;It would be helpful in order to evaluate the risk when turning it on.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 16:44:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1903163#M5798</guid>
      <dc:creator>AndreasFenske</dc:creator>
      <dc:date>2022-03-09T16:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1903215#M5802</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/158367"&gt;@AndreasFenske&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Because the passthrough filter can interact directly with the source database, there is some risk involved if you use incorrect syntax or logic in the passthrough filter.&lt;/P&gt;
&lt;P&gt;As John pointed out, this applies to users with update permissions on the source DB. If you check the Qlik user guide by source, it will provide more information about what permissions are required for the replicate user. Additionally, you can check with source dba to see if replicate user has update permission.&lt;/P&gt;
&lt;P&gt;Thus so long as your user does not have update privileges and you test your filter prior, it's safe to use.&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Kelly&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 19:57:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1903215#M5802</guid>
      <dc:creator>KellyHobson</dc:creator>
      <dc:date>2022-03-09T19:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1978665#M7294</link>
      <description>&lt;P&gt;Hi Kelly,&lt;/P&gt;
&lt;P&gt;We noticed that data that is older then the filters stays on the target tables. This sometimes causes some problems with certain unique keys we create on the target table. As the old data, which might have changed in the source system, but doesen't get transferd due to the filter, is not be the same anymore.&lt;/P&gt;
&lt;P&gt;Are there any best practices how to delete all records that are older then the filter (sysdate-90) on the target database&amp;nbsp; (so in our example, sysdate - 91 and older would be gone)? We are using Oracle as a source and MSSQL as the target.&lt;/P&gt;
&lt;P&gt;Thanks for your help.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Marc&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 12:20:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1978665#M7294</guid>
      <dc:creator>Finnova</dc:creator>
      <dc:date>2022-09-08T12:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1978729#M7296</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/144865"&gt;@Finnova&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out about this topic.&lt;/P&gt;
&lt;P&gt;When you are applying the 90 day pass thru filter and running a full load, do you have 'Drop and Create' set in Task Settings -&amp;gt; Full Load Settings -&amp;gt; Target Table Preparation ?&lt;/P&gt;
&lt;P&gt;With these settings this will drop the existing target table and create a new table with only the past 90 days worth of data. One idea would be renaming the table to a certain cohort value every time the full load is run (table_q1,table_q2,etc.) and think if this table as a snapshot in time and only that period. Depends on your use case/ how often you initiating the full load.&lt;/P&gt;
&lt;P&gt;Additionally, please note, full load passthru filters are designed for full load portion of tasks only, not change data capture mode. This is because it is a direct query on the source.&lt;/P&gt;
&lt;P&gt;If you need change data capture mode enabled on a task, I would recommend a full load pass thru filter (for full load) and a record level selection condition (for CDC).&lt;/P&gt;
&lt;P&gt;Here is an example for capturing records with an user_id less than 115 on the full load and also CDC of a task:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="KellyHobson_0-1662645168437.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/88656i4301CBA432D5BFB3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="KellyHobson_0-1662645168437.png" alt="KellyHobson_0-1662645168437.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Let me know if you have any follow up questions.&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Kelly&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 13:53:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1978729#M7296</guid>
      <dc:creator>KellyHobson</dc:creator>
      <dc:date>2022-09-08T13:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1978758#M7298</link>
      <description>&lt;P&gt;Hi Kelly,&lt;/P&gt;
&lt;P&gt;Thanks for the prompt answer.&lt;/P&gt;
&lt;P&gt;First to your question:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;When you are applying the 90 day pass thru filter and running a full load, do you have 'Drop and Create' set in Task Settings -&amp;gt; Full Load Settings -&amp;gt; Target Table Preparation ?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;No we use "TRUNCATE before loading"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We do use the passthrough filter though and have also used the cdc filter.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Our questions:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As we do not perform full loads very regularly, we get allot of "discontinued data", which is outside of the range of the CDC filter. As this data on the target can be very different to what is on the source (maybe it doesn't eaven exist there anymore) this can cause problems with unique indexes we implemented on the target.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Our idea is to maype run a scheduled job on the MS SQL target db which deletes all this "old discontinued data" so it is not in the way anymore and cannot cause problems with the unique indexes. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Our question is how do other customers do this / what are the your best practices or are we the only ones with this problem?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks for your help.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Marc&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 14:26:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1978758#M7298</guid>
      <dc:creator>Finnova</dc:creator>
      <dc:date>2022-09-08T14:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1978847#M7301</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/144865"&gt;@Finnova&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's interesting, if the data is truncated (all rows removed, but table structure remains) before the load, then it should remove dates outside of the range.&lt;/P&gt;
&lt;P&gt;Are you experiencing any errors or issues running the load? If willing, can you DM me your task json (Task Designer -&amp;gt; Export Task) ?&lt;/P&gt;
&lt;P&gt;It is possible to have a job or a query on the SQL Server target side where you filter for only past 90 days worth of data (or the exact date range you have defined for the particular table). This can be done by your DBA with some SQL code.&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Kelly&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 15:48:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1978847#M7301</guid>
      <dc:creator>KellyHobson</dc:creator>
      <dc:date>2022-09-08T15:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1979657#M7316</link>
      <description>&lt;P&gt;Hey Kelly&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When we perform a full load of the task the filter also gets applied with us (with the truncate before load settings) as after the table is truncated and completly empty, only the data in range will be transfered.&lt;/P&gt;
&lt;P&gt;In CDC mode data outside of the range of the filter still exists. As we don't do full loads very often it can become a substancial amount of old discontinued unusable data.&lt;/P&gt;
&lt;P&gt;But then if I read your reply corectly there is no way to reduce the amout of data on the target db with Qlik Replicate but the full load. I was guessing there might be an option of a special Qlik Replicate load that will keep the data in the filtered range but clean out all the old data (as this would be much faster then a full load), but I guess this dosn't exist. It would be handy though as we don't like to modify (or delete) data in the target db that is beeing loaded by Qlik Replicate, as problems can occur that will make the Qlik Replicate task fail (like waits from locks etc.).&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Marc&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 07:24:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1979657#M7316</guid>
      <dc:creator>Finnova</dc:creator>
      <dc:date>2022-09-12T07:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1980019#M7318</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/144865"&gt;@Finnova&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I posted a follow up article with &lt;A href="https://community.qlik.com/t5/Knowledge/Filter-for-last-90-days-of-data-in-Qlik-Replicate-part-two/ta-p/1980009" target="_blank" rel="noopener"&gt;another example&lt;/A&gt; of restricting to a 90 day window in a postgres source task. In this example, I hardcode record selection conditions to stay within an explicit date range.&lt;/P&gt;
&lt;P&gt;Depending on your requirements, its possible to set up a task for each date range with respective record selection filters set up. This would prevent having to touch anything on the target end.&lt;/P&gt;
&lt;P&gt;For your comment: "I was guessing there might be an option of a special Qlik Replicate load that will keep the data in the filtered range but clean out all the old data (as this would be much faster then a full load), but I guess this dosn't exist". No, at this point the functionality for this does not exist for a rolling window filter. If you would like to propose as a feature request, please visit our &lt;A href="https://community.qlik.com/t5/Qlik-Product-Insight-Blog/Getting-Started-with-Ideas/ba-p/1684011" target="_blank" rel="noopener"&gt;Ideations Page.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Kelly&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 18:56:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1980019#M7318</guid>
      <dc:creator>KellyHobson</dc:creator>
      <dc:date>2022-09-12T18:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1980401#M7325</link>
      <description>&lt;P&gt;Hello Kelly,&lt;/P&gt;
&lt;P&gt;1. Thank you for the example, that was exactly what I was talking about.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. We would like to propose this feature but unfortunatly the Ideations Page doesen't load on our side. Do customers like us have access to it?&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Marc&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2022 13:07:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1980401#M7325</guid>
      <dc:creator>Finnova</dc:creator>
      <dc:date>2022-09-13T13:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1980497#M7327</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/144865"&gt;@Finnova&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Every user should have access to the&lt;A href="https://community.qlik.com/t5/Ideation/ct-p/qlik-product-insight" target="_blank" rel="noopener"&gt; ideation section&lt;/A&gt;. Could you let me know what error you are getting so that we can forward this to our community team?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2022 14:39:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/1980497#M7327</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2022-09-13T14:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/2104753#M9899</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/149534"&gt;@KellyHobson&lt;/a&gt;&amp;nbsp;or &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28597"&gt;@Sonja_Bauernfeind&lt;/a&gt;&amp;nbsp;Following the guide (adding the entry to the config file, restarting services, holding CONTROL) does not appear to grant me access to the Full Load Passthrouh filter.&amp;nbsp; Any other suggestions to get this option available?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2023 23:24:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/2104753#M9899</guid>
      <dc:creator>AutomatedUser</dc:creator>
      <dc:date>2023-08-10T23:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/2104911#M9902</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/179410"&gt;@AutomatedUser&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Can you confirm if you have selected the table and holding down CTRL while you click 'Table Settings'?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are still experiencing an issue, I suggest opening a support case so we can take a look at your environment.&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Kelly&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 12:51:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/2104911#M9902</guid>
      <dc:creator>KellyHobson</dc:creator>
      <dc:date>2023-08-11T12:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/2104961#M9904</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/149534"&gt;@KellyHobson&lt;/a&gt;&amp;nbsp;confirmed.&amp;nbsp; Even that did not provide access to the passthrough filter.&amp;nbsp; Case has been opened.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 15:54:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/2104961#M9904</guid>
      <dc:creator>AutomatedUser</dc:creator>
      <dc:date>2023-08-11T15:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/2105614#M9912</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/149534"&gt;@KellyHobson&lt;/a&gt;&amp;nbsp;I was able to work with support and determine that since I was attempting to access the passthrough filter via Enterprise Manager, that I needed highlight the target table, hold down CTRL and double-click the table to access the passthrough menu.&amp;nbsp; Highlighting the table, holding down CTRL and clicking on Table Settings does not appear to work in Enterprise Manager (only in the Replicate Console).&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2023 15:23:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/2105614#M9912</guid>
      <dc:creator>AutomatedUser</dc:creator>
      <dc:date>2023-08-14T15:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/2525390#M16163</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;One question.&lt;/P&gt;&lt;P&gt;Full load passthru or expression builder are supported for SAP ODP source connection or not?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 21:39:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/2525390#M16163</guid>
      <dc:creator>ssayyad</dc:creator>
      <dc:date>2025-07-25T21:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for last 90 days of data in Qlik Replicate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/2525440#M16166</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/333892"&gt;@ssayyad&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post your question in the&lt;A href="https://community.qlik.com/t5/Qlik-Replicate/bd-p/qlik-replicate-discussions" target="_blank" rel="noopener"&gt; Qlik Replicate forum&lt;/A&gt;, where your knowledgeable Qlik peers and our active Support agents can more directly assist you.&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 06:45:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Filter-for-last-90-days-of-data-in-Qlik-Replicate/tac-p/2525440#M16166</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2025-07-28T06:45:43Z</dc:date>
    </item>
  </channel>
</rss>

