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 Not under consideration
Workspace IBM i
Categories Db2 for i
Created by Guest
Created on Feb 7, 2019
Merged idea

This idea has been merged into another idea. To comment or vote on this idea, please visit IBMI-I-1480 allow three part names in db2 for i services.

Allow three part naming on table functions Merged

I'd like to see the ability to use three part naming on table functions, like
RemoteSystem.QSYS2.HISTORY_LOG_INFO


Use Case:

Retrieving statistics for a system health dashboard.


Idea priority Medium
  • Guest
    Reply
    |
    Feb 9, 2021

    This request is a duplicate of RFE 113689.

    The following work-around is included in this RFE as well.

    To direct a table function to be run on a remote system, add a three-part reference to a table on that system. Here is an example. Replace RMTDB with the system you want to access.

    select current server, h.*
    from table(qsys2.history_log_info()) h
    where exists
    (select 1 from RMTDB.sysibm.sysdummy1);

  • Guest
    Reply
    |
    Mar 11, 2019

    Hi Rob.

    Your problem can (temporarily) be solved by using a WHERE clause, according to a tweet by Scott Forstie:

    If you code a table based 3-part name in your WHERE clause, your UDTF invocation will execute on the target RDB.
    -- Example:
    select current server, h.* from table(qsys2.history_log_info()) h
    where exists (select 1 from rmtdb.sysibm.sysdummy1);

    Check the tweet from Scott:
    https://twitter.com/Forstie_IBMi/status/1021412246205763585

    I support your RFE - but it seems like it's coming (at least that's how I read Scott's answer to my question in the tweet...)