Skip to Main Content
IBM Data and AI Ideas Portal for Customers


This portal is to open public enhancement requests against products and services offered by the IBM Data & AI 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 Not under consideration
Workspace Db2
Created by Guest
Created on Feb 28, 2019

NCHR for db2 LUW (new scalar function)

Oracle supports NCHR function. To migrate oracle application, we need this scalar function.

NCHR returns the character having the binary equivalent to number in the national character set. The value returned is always NVARCHAR2. This function is equivalent to using the CHR function with the USING NCHAR_CS clause.

https://docs.oracle.com/cd/B19306_01/server.102/b14200/functions091.htm

The existing applications use this function frequently.

SELECT station_name FROM t_subway WHERE station_name between NCHR(48148) AND NCHR(49323) ;

(48148 and 49323 represent the unicode decimal numbers, 48148 -> '바' , 49323 -> '삫' )

https://www.key-shortcut.com/en/writing-systems/%ED%95%9C%EA%B5%AD-korean-script/hangul-characters-3/

  • Guest
    Reply
    |
    May 8, 2019

    This function can be written in a unicode database as a simple UDF:

    -- Convert integer value to unicode character
    -- Integer value represents UTF-32 Unicode codepoint, e.g.:
    --   A = x41    = 65
    --   Ł = x0141  = 321 (L with stroke)
    --   𝄞 = x1d11e = 119070 (G-clef)
    create or replace function nchr( i integer )
    returns char(1 codeunits32)
    language sql
    begin
      declare result varchar(1 codeunits32); --
      declare stmt varchar(128); --
      declare hexValue varchar(8); --
      declare C cursor for S; --

      set hexValue = hex(i); --
      -- Handle endianness
      if substr(hex(1),2,1) = '1' then
        -- little-endian
        set hexValue = substr(hexValue,5,2) || substr(hexValue,3,2) || substr(hexValue,1,2); --
      else
        -- big-endian
        set hexValue = substr(hexValue,3,6); --
      end if; --

      set stmt = 'values U&''\+' || hexValue || ''''; --
      prepare S from stmt; --
      open C; --
      fetch from C into result; --
      close c; --
      return result; --
    end;