<?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 use join in qlik replicate source for IBM iSeries tables in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1789508#M791</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/132884"&gt;@dndiaye01&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;BR /&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;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Mar 2021 10:24:56 GMT</pubDate>
    <dc:creator>john_wang</dc:creator>
    <dc:date>2021-03-09T10:24:56Z</dc:date>
    <item>
      <title>How to use join in qlik replicate source for IBM iSeries tables</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1786593#M777</link>
      <description>&lt;P&gt;I want to use join in qlik replicate full load task to get data from a table using join since the main table does not date column to get a limited amount of records&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 13:26:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1786593#M777</guid>
      <dc:creator>dndiaye01</dc:creator>
      <dc:date>2021-02-26T13:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to use join in qlik replicate source for IBM iSeries tables</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1786744#M778</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/132884"&gt;@dndiaye01&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are options you can join multiple source tables:&lt;/P&gt;&lt;P&gt;1. Use SOURCE_LOOKUP data enrichment function.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; You can get more detailed usage and sample from User Guide.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Use VIEW (LF).&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; You can create VIEW in DB400 to join the relational tables and get your desired layout (filter the rows by date column etc), then access the VIEW to replicate the records to target side.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; In this usage please take note that (1) VIEW support Full Load ONLY, no CDC function support as view's change will not record into Journal;&amp;nbsp; (2) Please use generic ODBC to access DB400 rather than Native DB400 driver in Replicate Endpoint setting; (3) It must be "Full Load ONLY" type (turn off CDC) in Replicate Task setting.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Personally I'd like suggest you use option 2 because it's easy to maintain (in both Task Design and Runtime managements), and the performance is better than option 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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; &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Feb 2021 01:44:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1786744#M778</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2021-02-27T01:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to use join in qlik replicate source for IBM iSeries tables</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1789347#M785</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;I was able to join tables in Qlik Replicate Full Load putting a join condition on Fullload Passthru Filter&lt;/P&gt;&lt;P&gt;Here is my condition below:&lt;/P&gt;&lt;P&gt;first Column in the original table: Col_nm &amp;gt; value) AND EXISTS&lt;BR /&gt;(SELECT 1&lt;BR /&gt;FROM Lookup table&amp;nbsp; B&lt;BR /&gt;WHERE original_table.Join_Col_nm = B.Join_Col_nm&lt;BR /&gt;AND B.Second Colu_nm &amp;gt;= value&lt;BR /&gt;AND 1=1) WITH UR -- #&lt;/P&gt;&lt;P&gt;Example&amp;nbsp;&lt;/P&gt;&lt;P&gt;FRBIL# &amp;gt; 99999) AND EXISTS&lt;BR /&gt;(SELECT 1&lt;BR /&gt;FROM WELIB.TSPBILL B&lt;BR /&gt;WHERE WELIB.TSPTRPCM.FRBIL# = B.FRBIL#&lt;BR /&gt;AND B.BILYY &amp;gt;= 2021&lt;BR /&gt;AND 1=1) WITH UR -- #&lt;/P&gt;&lt;P&gt;The source Lookup did not work for me and the view.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Mar 2021 20:29:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1789347#M785</guid>
      <dc:creator>dndiaye01</dc:creator>
      <dc:date>2021-03-08T20:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to use join in qlik replicate source for IBM iSeries tables</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1789508#M791</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/132884"&gt;@dndiaye01&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;BR /&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;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 10:24:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1789508#M791</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2021-03-09T10:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to use join in qlik replicate source for IBM iSeries tables</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1789542#M792</link>
      <description>&lt;P&gt;Thanks John,&lt;/P&gt;&lt;P&gt;I will look into it further and let you know for more advices and suggestions.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 12:07:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-to-use-join-in-qlik-replicate-source-for-IBM-iSeries-tables/m-p/1789542#M792</guid>
      <dc:creator>dndiaye01</dc:creator>
      <dc:date>2021-03-09T12:07:06Z</dc:date>
    </item>
  </channel>
</rss>

