Skip to Main Content
IBM Data Platform Ideas Portal for Customers


This portal is to open public enhancement requests against products and services offered by the IBM Data Platform organization. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:


Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,


Post your ideas

Post ideas and requests to enhance a product or service. Take a look at ideas others have posted and upvote them if they matter to you,

  1. Post an idea

  2. Upvote ideas that matter most to you

  3. Get feedback from the IBM team to refine your idea


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

IBM Employees should enter Ideas at https://ideas.ibm.com



Status Submitted
Components Q Replication for Z
Created by Guest
Created on Oct 30, 2025

Let Capture build the transaction message with non-LOB columns first and LOB columns last instead of in strict column sequence order.

Please consider changing Capture to build transaction messages with all non-LOB data first, then add on the LOB data after all other non-LOB data no matter what the sequence numbers.  This would prevent the risk of splitting a message on non-LOB data.

 

Capture builds transaction messages based on the column sequence.  This poses a risk if the size of the transaction exceeds the limit defined by MAX_MESSAGE_SIZE for its SendQ and the transaction is split into separate messages by Capture.  Suppose there is a Db2 table defined as:

 

            Seq      Col Name        Col Type/Len

            1          COL_A            CHAR(50)

            2          COL_B            CLOB(100 K)

            3          COL_C            CHAR(100)

 

For this example, MAX_MESSAGE_SIZE=200 for the associated SendQ.  If a transaction comes in that contains a full 100K of LOB data, then COL_A, COL_B, and some part of COL_C would fit into the first message with the remaining data for COL_C being sent in a separate message.  Obviously, this example does not account for internal Db2 overhead like header data, but the concept should be acceptable.  When the split is done on the non-LOB data, it throws message ASN7170E.  This inactivates the associated SendQ and has the potential for data loss if truncation occurs on the message.

 

When adding a new column to a Db2 table, the norm is to add that new column to the end of the existing Db2 table structure.  That is, the new column would have a column sequence one greater than the last column of the existing table.  In prior versions there would be a need to drop/recreate a table to add a column if an existing LOB column needed to be located physically last on the table.  Where columns are physically located on the table (column sequence) is no longer a concern for Db2 processes and should not be for Capture either.

Needed By Not sure -- Just thought it was cool