<?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 Qlik Replicate: IBM DB2 for iSeries source: How to replicate Multi-Member tables in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/ta-p/1974175</link>
    <description>&lt;P&gt;The AS/400 supports a file concept known as multiple-member files, in which one file (or table) can possess several different members. Each member is a part of the same file or table and shares the same schema, but the members are uniquely named and have unique data. Just like a partition table in other regular RDBMS in, for example, Oracle, or MySQL.&lt;/P&gt;
&lt;P&gt;ODBC and OLE DB have no built-in mechanism for accessing multiple members. By default, ODBC always accesses the first member in a multimember file. This is the known limitation in Qlik Replicate User Guide:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/replicate/May2022/Content/Global_Common/Content/SharedReplicateHDD/IBM4DB2-iseries/iseries_limitations.htm" target="_blank" rel="noopener"&gt;Multi-member (Partitioned) tables are not supported&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;To enable ODBC-based applications such as Data Transformation Services (DTS) to access multiple-member files, we need to use the AS/400's SQL ALIAS statement. The ALIAS statement lets you create an alias for each member we need to access. We use ALIAS to access all members in the Qlik Replicate full load stage. More samples:&amp;nbsp;&lt;A href="https://www.ibm.com/docs/en/i/7.3?topic=language-creating-using-alias-names" target="_blank" rel="noopener" aria-describedby="audioeye_new_window_message"&gt;Creating and using ALIAS names&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;However, all member data changes will be recorded in the DB400 Journal file, Qlik Replicate can capture all members' changes. No special settings are needed in the Qlik Replicate CDC stage.&lt;/P&gt;
&lt;P&gt;This article describes how to overcome the limitation and set up a Qlik Replicate task to replicate Multi-Member Tables.&lt;/P&gt;
&lt;H3 id="toc-hId--525314414"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resolution&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;Create ALIAS for all members of the multi-member table (except the first member) in AS400 Terminal&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;CREATE ALIAS apsupdb.MMPF_ALIAS2 FOR apsupdb.mmpf(MBR2)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;CREATE ALIAS apsupdb.MMPF_ALIAS3 FOR apsupdb.mmpf(MBR3)&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;In the above sample, we create 2 alias in library&amp;nbsp;apsupdb, corresponding to 2 members&amp;nbsp;apsupdb.mmpf(MBR2) &amp;amp;&amp;nbsp;apsupdb.mmpf(MBR3).&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Create a new Full Load + CDC task with a few tables. The task contains the physical table (first member).&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Press "&lt;/SPAN&gt;&lt;SPAN class="inner-text"&gt;Export Task" and edit the exported JSON file&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Add the ALIAS to task JSON file as same as it's a regular table.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Change all STRING data type columns from UTF8 to "ibm-285_P100-1995". In below sample we change&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;STRING type column "ADDRESS":&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt; "source_column_data_types": [{&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"column_name": "ADDRESS",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"converter_name": "ibm-285_P100-1995",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"data_type": "kAR_DATA_TYPE_STR"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;}],&lt;/FONT&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;This is because Qlik Replicate cannot get the ALIAS metadata correctly so all STRING data types are regarded as UTF8 which leads to garbage data after Full Load is done. Other data types (such as numbers, data, etc ) do not need not be modified.&lt;BR /&gt;
&lt;P&gt;&lt;BR /&gt;Note that the 285 value here is from the CCSID and not all tables have the same CCSID. The following query should be used to verify the CCSID and make changes accordingly.&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;SELECT * FROM QSYS2.SYSCOLUMNS WHERE TABLE_NAME = '&lt;EM&gt;MMPF&lt;/EM&gt;';&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Import the JSON and run&amp;nbsp;the task, as same as a regular task.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please note that these steps in the article will replicate all the Multimember tables are separate tables on the target database. If you would like all the partitions to be under a single table, change the Full Load task settings to 'Do Nothing' if the target table already exists to prevent full Loads from recreating them. The table should be created manually. After this change, each Alias added to the JSON will need a table-level transformation to transform the table name back to the original base table name, MMPF in the article's case. This would ensure all changes are replicated to just MMPF.&lt;/P&gt;
&lt;P&gt;In the Qlik Replicate UI, all changes will be seen on MMPF and not on the other members as the Qlik Replicate task will always reference the base object.&lt;/P&gt;
&lt;BLOCKQUOTE class="quote"&gt;This customization is provided as is. Qlik Support cannot provide continued support for the solution. Please reach out to Qlik Professional Service Team and AS400 Expert for additional assistance.&lt;/BLOCKQUOTE&gt;
&lt;H3 id="toc-hId-1962198419"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;Qlik Replicate All supported versions&lt;/LI&gt;
&lt;LI&gt;IBM DB2 for iSeries All supported versions&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId-187989873"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Internal Investigation ID(s)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;Support Case:&amp;nbsp;&lt;SPAN&gt;00049024&lt;/SPAN&gt;&lt;!--
        Site Menu
    --&gt; &lt;!--
        Generic Aria Live message container
    --&gt;&lt;/P&gt;
&lt;!-- end #ae_app --&gt;</description>
    <pubDate>Thu, 13 Feb 2025 10:15:57 GMT</pubDate>
    <dc:creator>john_wang</dc:creator>
    <dc:date>2025-02-13T10:15:57Z</dc:date>
    <item>
      <title>Qlik Replicate: IBM DB2 for iSeries source: How to replicate Multi-Member tables</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/ta-p/1974175</link>
      <description>&lt;P&gt;The AS/400 supports a file concept known as multiple-member files, in which one file (or table) can possess several different members. Each member is a part of the same file or table and shares the same schema, but the members are uniquely named and have unique data. Just like a partition table in other regular RDBMS in, for example, Oracle, or MySQL.&lt;/P&gt;
&lt;P&gt;ODBC and OLE DB have no built-in mechanism for accessing multiple members. By default, ODBC always accesses the first member in a multimember file. This is the known limitation in Qlik Replicate User Guide:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/replicate/May2022/Content/Global_Common/Content/SharedReplicateHDD/IBM4DB2-iseries/iseries_limitations.htm" target="_blank" rel="noopener"&gt;Multi-member (Partitioned) tables are not supported&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;To enable ODBC-based applications such as Data Transformation Services (DTS) to access multiple-member files, we need to use the AS/400's SQL ALIAS statement. The ALIAS statement lets you create an alias for each member we need to access. We use ALIAS to access all members in the Qlik Replicate full load stage. More samples:&amp;nbsp;&lt;A href="https://www.ibm.com/docs/en/i/7.3?topic=language-creating-using-alias-names" target="_blank" rel="noopener" aria-describedby="audioeye_new_window_message"&gt;Creating and using ALIAS names&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;However, all member data changes will be recorded in the DB400 Journal file, Qlik Replicate can capture all members' changes. No special settings are needed in the Qlik Replicate CDC stage.&lt;/P&gt;
&lt;P&gt;This article describes how to overcome the limitation and set up a Qlik Replicate task to replicate Multi-Member Tables.&lt;/P&gt;
&lt;H3 id="toc-hId--525314414"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resolution&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;Create ALIAS for all members of the multi-member table (except the first member) in AS400 Terminal&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;CREATE ALIAS apsupdb.MMPF_ALIAS2 FOR apsupdb.mmpf(MBR2)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;CREATE ALIAS apsupdb.MMPF_ALIAS3 FOR apsupdb.mmpf(MBR3)&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;In the above sample, we create 2 alias in library&amp;nbsp;apsupdb, corresponding to 2 members&amp;nbsp;apsupdb.mmpf(MBR2) &amp;amp;&amp;nbsp;apsupdb.mmpf(MBR3).&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Create a new Full Load + CDC task with a few tables. The task contains the physical table (first member).&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Press "&lt;/SPAN&gt;&lt;SPAN class="inner-text"&gt;Export Task" and edit the exported JSON file&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Add the ALIAS to task JSON file as same as it's a regular table.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Change all STRING data type columns from UTF8 to "ibm-285_P100-1995". In below sample we change&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;STRING type column "ADDRESS":&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt; "source_column_data_types": [{&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"column_name": "ADDRESS",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"converter_name": "ibm-285_P100-1995",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"data_type": "kAR_DATA_TYPE_STR"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;}],&lt;/FONT&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;This is because Qlik Replicate cannot get the ALIAS metadata correctly so all STRING data types are regarded as UTF8 which leads to garbage data after Full Load is done. Other data types (such as numbers, data, etc ) do not need not be modified.&lt;BR /&gt;
&lt;P&gt;&lt;BR /&gt;Note that the 285 value here is from the CCSID and not all tables have the same CCSID. The following query should be used to verify the CCSID and make changes accordingly.&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;SELECT * FROM QSYS2.SYSCOLUMNS WHERE TABLE_NAME = '&lt;EM&gt;MMPF&lt;/EM&gt;';&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Import the JSON and run&amp;nbsp;the task, as same as a regular task.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please note that these steps in the article will replicate all the Multimember tables are separate tables on the target database. If you would like all the partitions to be under a single table, change the Full Load task settings to 'Do Nothing' if the target table already exists to prevent full Loads from recreating them. The table should be created manually. After this change, each Alias added to the JSON will need a table-level transformation to transform the table name back to the original base table name, MMPF in the article's case. This would ensure all changes are replicated to just MMPF.&lt;/P&gt;
&lt;P&gt;In the Qlik Replicate UI, all changes will be seen on MMPF and not on the other members as the Qlik Replicate task will always reference the base object.&lt;/P&gt;
&lt;BLOCKQUOTE class="quote"&gt;This customization is provided as is. Qlik Support cannot provide continued support for the solution. Please reach out to Qlik Professional Service Team and AS400 Expert for additional assistance.&lt;/BLOCKQUOTE&gt;
&lt;H3 id="toc-hId-1962198419"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;Qlik Replicate All supported versions&lt;/LI&gt;
&lt;LI&gt;IBM DB2 for iSeries All supported versions&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId-187989873"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Internal Investigation ID(s)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;Support Case:&amp;nbsp;&lt;SPAN&gt;00049024&lt;/SPAN&gt;&lt;!--
        Site Menu
    --&gt; &lt;!--
        Generic Aria Live message container
    --&gt;&lt;/P&gt;
&lt;!-- end #ae_app --&gt;</description>
      <pubDate>Thu, 13 Feb 2025 10:15:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/ta-p/1974175</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2025-02-13T10:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate: IBM DB2 for iSeries source: How to replicate Multi-Member tables</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2101914#M9834</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;
&lt;P&gt;Many thanks for the blog.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Will&amp;nbsp; separate tables be created for each alias at the destination? &lt;BR /&gt;Can we give the same destination table name for Alias tables?&amp;nbsp;&lt;BR /&gt;Can we use different codepage like ibm-920_P100-1995 for String columns?&lt;/P&gt;
&lt;P&gt;Best.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2023 07:08:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2101914#M9834</guid>
      <dc:creator>kutay_cilingiroglu</dc:creator>
      <dc:date>2023-08-03T07:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate: IBM DB2 for iSeries source: How to replicate Multi-Member tables</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2102126#M9839</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/145115"&gt;@kutay_cilingiroglu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt; Will separate tables be created for each alias at the destination?&lt;/P&gt;
&lt;P&gt;Yes, however, first, we need to merge all separate tables (corresponding to all the alias) into one single table (corresponding to the first member).&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt; Can we give the same destination table name for Alias tables?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See above, yes.&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt; Can we use different codepage like ibm-920_P100-1995 for String columns?&lt;/P&gt;
&lt;P&gt;Yes, any supported codepage can be used.&lt;/P&gt;
&lt;P&gt;Should you have any further questions, please post them directly in our &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; (though feel free to reply to this message letting me know you posted there).&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2023 13:55:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2102126#M9839</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-08-03T13:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate: IBM DB2 for iSeries source: How to replicate Multi-Member tables</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2492569#M14938</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this post gives me some hope to overcome the issue I'm currently facing when extracting data from DB2.&lt;/P&gt;
&lt;P&gt;Basically we are getting data from an iSeries DB2, where we have multi-member files, and sending the data to Kafka to topics per source table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Few details: main file is&amp;nbsp;EG3DTQ.VARSTMT1 and we created an alias called&amp;nbsp;EG3DTQ.EG3DTQ_VARSTMT1_KC7.&lt;/P&gt;
&lt;P&gt;I did the steps you mentioned and they allowed me to do add the alias to the task but then the following behavior is experienced.&lt;/P&gt;
&lt;P&gt;When DML operations are made on the alias they are actually captured by Replicate as being made on the main file. Kafka events are also delivered to the topic of the main file instead of the topic related to the alias.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ernesto_costa_0-1731512503010.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/174316iC0ADD80DA47AD47E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ernesto_costa_0-1731512503010.png" alt="ernesto_costa_0-1731512503010.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This would be fine if we could actually identify to which member the messages belong to, but I can't really find a way.&lt;/P&gt;
&lt;P&gt;Another thing that may be relevant is the following message when the task is started:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ernesto_costa_1-1731512849469.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/174317i36950B083A601E73/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ernesto_costa_1-1731512849469.png" alt="ernesto_costa_1-1731512849469.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any idea on how to overcome these challenges, either by:&lt;/P&gt;
&lt;P&gt;1. getting the events to be picked up on the alias and not on the main file&lt;/P&gt;
&lt;P&gt;2. finding a way to identify to which member the change captured on the main file belongs to.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know what you think.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 15:50:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2492569#M14938</guid>
      <dc:creator>ernesto_costa</dc:creator>
      <dc:date>2024-11-13T15:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate: IBM DB2 for iSeries source: How to replicate Multi-Member tables</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2492903#M14960</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/260405"&gt;@ernesto_costa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for the update.&lt;/P&gt;
&lt;P&gt;The primary challenge is that Qlik Replicate only retrieves data from the first member of Multi-Member tables during the full load phase. To get data from all members, we need to use an ALIAS for initial data retrieval. This limitation is highlighted in the User Guide:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/replicate/November2024/Content/Global_Common/Content/SharedReplicateHDD/IBM4DB2-iseries/iseries_limitations.htm#:~:text=Multi%2Dmember%20(Partitioned)%20tables%20are%20not%20supported" target="_blank" rel="noopener"&gt;Multi-member (Partitioned) tables are not supported&lt;/A&gt;.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;In IBM DB2 for iSeries, any changes are associated with the main file rather than individual members. Therefore, during the Change Processing stage, Qlik Replicate does not need to consider ALIAS or specific members.&lt;/P&gt;
&lt;P&gt;Additionally, please note that according to DB2i object identifier naming conventions, object names must be 10 characters or fewer.&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 06:43:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2492903#M14960</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2024-11-15T06:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate: IBM DB2 for iSeries source: How to replicate Multi-Member tables</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2493046#M14966</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/115309"&gt;@john_wang&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank you for your feedback.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ok, so:&lt;/P&gt;
&lt;P&gt;1. The alias are necessary for the initial load&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. The aliases aren't needed when in CDC mode, since the events are captured from the main table, for all members.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, regarding point #2, is there any way to know on which member the captured event was made?&lt;/P&gt;
&lt;P&gt;This is needed in our use case because we have tables were members represent countries and we need to distinguish between them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Will wait for your feedback.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:02:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2493046#M14966</guid>
      <dc:creator>ernesto_costa</dc:creator>
      <dc:date>2024-11-16T19:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate: IBM DB2 for iSeries source: How to replicate Multi-Member tables</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2493821#M14990</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/260405"&gt;@ernesto_costa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;EM&gt;1. The alias are necessary for the initial load&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Exactly.&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;EM&gt;2. The aliases aren't needed when in CDC mode, since the events are captured from the main table, for all members.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;I cannot remember it clear. Let me check for you.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 07:33:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2493821#M14990</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2024-11-21T07:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Replicate: IBM DB2 for iSeries source: How to replicate Multi-Member tables</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2493832#M14991</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/260405"&gt;@ernesto_costa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;No, in current version the member information was not retrieved from journal entries, so no way to know which member was changed.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 07:52:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-IBM-DB2-for-iSeries-source-How-to-replicate-Multi/tac-p/2493832#M14991</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2024-11-21T07:52:58Z</dc:date>
    </item>
  </channel>
</rss>

