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
Created by Guest
Created on Aug 7, 2026

Allow Optional CHAR-to-VARCHAR Conversion in DataGate to Preserve Application Transparency between Db2 for z/OS and Db2 LUW

When replicating data from Db2 for z/OS (EBCDIC) to Db2 LUW (UTF-8), DataGate increases the length of CHAR columns to accommodate Unicode expansion. While this behavior is understandable from a data integrity perspective, it can introduce application compatibility issues.

A common use case is flag columns defined as:

FLAG CHAR(1)

Containing values such as:

'S' = Yes,
'N' = No

After replication, DataGate may create the target column as CHAR(2), causing values to be returned as:

'S ',
'N '

Instead of:

'S',
'N'

This difference can lead to application failures when programs perform exact value comparisons. It also forces applications to use functions such as RTRIM(), which may negatively impact index usage and query performance.

We would like DataGate to provide an optional configuration to map source CHAR columns to VARCHAR columns in the target Db2 LUW environment, preserving the logical value while avoiding trailing blank issues.

Ideally, this configuration should be available at the table level (or even column level), allowing customers to selectively enable the behavior only for specific tables where it makes sense, rather than applying a system-wide configuration.

Benefits:

  • Improved application transparency between Db2 for z/OS and Db2 LUW.

  • Reduced need for application code changes.

  • Elimination of issues caused by trailing blanks in flag and code columns.

  • Better preservation of index efficiency by avoiding the need for functions such as RTRIM() in predicates.

  • More flexibility for customers with mixed workloads and different data requirements.

This enhancement would be particularly valuable for environments migrating or offloading workloads from Db2 for z/OS while maintaining compatibility with existing applications.

Needed By Quarter