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 Aug 8, 2022

add record type to DNS_LOOKUP table function

DNS supports obviously many record types.

Apparenty DNS_LOOKUP ask just for A type.

Please add record type query for to DNS_LOOKUP as a second parameter (i.e. to ask for MX type, TXT type.... etc....)

Idea priority Medium
  • Guest
    Apr 8, 2026

    I agree with this. I am trying to scrub an email file. The meat of which boils down to me stripping off the domain name from the email, grouping by domain names, and running them through the following:


    CREATE OR REPLACE FUNCTION rob.VALID_DOMAIN (
    
    domain varchar(256)
    )
    RETURNS BOOLEAN
    LANGUAGE SQL
    BEGIN
    DECLARE vIP_ADDRESS varchar(45);
    DECLARE domain_passes BOOLEAN;
    DECLARE EXIT HANDLER FOR SQLEXCEPTION
    return false;
    SET vIP_ADDRESS = null;
    if domain is null then
    set domain_passes = false;
    else
    select ip_address into vIP_ADDRESS
    from table(qsys2.dns_lookup(SEARCH_NAME => domain))
    fetch first row only;
    if vIP_ADDRESS is null then
    set domain_passes = false;
    else
    set domain_passes = true;
    End If;
    End If;
    RETURN domain_passes;
    END;
    -- Test samples
    values rob.valid_domain('gmail.com'); -- returns true
    values rob.valid_domain('asdflkjasdflh83ff.com'); -- returns false
    values rob.valid_domain(null); -- returns false
    values rob.valid_domain('a@a.a'); -- returns false due to sqlexception


    One domain which fails this, but does have valid MX records is in the url below (aaclightingsales.com)

    https://www.nslookup.io/domains/aaclightingsales.com/dns-records/


  • Guest
    Sep 7, 2022
    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