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
Workspace Cloud Pak for Data
Created by Guest
Created on Sep 2, 2026

Allow Replication of a Subset of Columns from Db2 for z/OS using Db2 Data Gate

Allow customers to define which columns of a Db2 for z/OS table should be replicated to Db2 Data Gate, reducing storage requirements, replication overhead, and unnecessary data exposure.

Today, when a table is added to Db2 Data Gate using the SYSPROC.ACCEL_ADD_TABLES process, the accelerator-shadow table is created using all supported columns from the source Db2 for z/OS table. The product automatically excludes only unsupported columns, such as specific data types or columns with unsupported attributes.

However, many real-world use cases require only a subset of the columns available in the source table. Organizations often replicate large operational tables containing hundreds of columns while applications require only a small portion of the available data.

Currently, there is no supported mechanism to intentionally select which columns should be replicated to Db2 Data Gate.

Benefits:

Adding support for column-level replication would provide several benefits:

  • Reduced storage consumption on the target Db2u environment.
  • Reduced network traffic during initial loads and ongoing replication.
  • Lower CPU and resource utilization for replication processing.
  • Faster initial table loading and synchronization times.
  • Improved governance and security by avoiding replication of unnecessary data.
  • Simplified compliance with data minimization requirements.
  • Better support for applications that typically consume limited subsets of large operational tables.
  • Reduced operational costs associated with maintaining replicated datasets.

This capability would be particularly valuable for very large enterprise tables containing hundreds of columns and billions of rows, where only a small subset of attributes is required in the target environment.

Suggested Implementation:

One possible implementation approach would be to extend the SYSPROC.ACCEL_ADD_TABLES XML specification to allow optional column selection during table registration:

<table name="TABLENAME" schema="CREATOR">
   <columns>
      <column name="COL1"/>
      <column name="COL2"/>
      <column name="COL5"/>
      <column name="COL6"/>
   </columns>
</table>

 

Only the specified columns would be included in the accelerator-shadow table and subsequent replication process.

Needed By Quarter