Skip to Main Content
IBM Power Ideas Portal


This portal is to open public enhancement requests against IBM Power Systems products, including IBM i. 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
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


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.

Status Future consideration
Workspace IBM i
Categories Db2 for i
Created by Guest
Created on Nov 18, 2025

Make SQL function URL_ENCODE support RFC3986

RFC3986 dictates that any space in a URL must be converted to "%20". However, when we run "values URL_ENCODE(' Hello there!'), we get "Hello+there%21" with the plus sign instead of "%20". The same is output from URLENCODE in SYSTOOLS.

It seems like the functions encode according to the older form data encoding originating from the HTML 2.0 specs, described in RFC1738, now updated by RFC3986.

Every programming language has this issue (I checked JavaScript, PHP and Python), and they all have two functions for URL encoding. I suppose SQL could do the same and have a URL_ENCODE_RFC3986 function to do it correctly - which seems like a very long name to type, just to get the RFC encoding. IMHO it would be better to have URL_ENCODE follow the RFC3986 standard.

To be compatible and not break anything, a parameter could be added to the URL_ENCODE function, e.g. "RFC3986 => true" with a default of "false" to keep the old behavior. Another option could be to have a global variable "URL_ENCODE_RFC3986" controlling the encoding if the parameter is not specified, thus allowing the customer to change the system default for any URL_ENCODE calls without the parameter.

Idea priority Medium
  • Guest
    Nov 18, 2025

    I ran into this exact issue today.   Rather than just calling URL_ENCODE, I had to write code to break the string at blanks, and piece together a URL_ENCODE of each piece and then insert %20 between each piece.  Upvoting this item. 

  • Guest
    Nov 18, 2025
    IBM will use this Idea as input to planning, but no commitment is made or implied. This Idea will be updated in the future if IBM implements it.

    Db2 for i Development team
    IBM Power Systems Development