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 for z/OS
Created by Guest
Created on Mar 10, 2019

Labelling a column changes access path

With table TB1(COL1, COL2, COL3, COL4) and index IX1(COL1, COL2, COL3), query:

SELECT COL1, COL2, VARCHAR(COL3) COL3, COL4

FROM TB1

WHERE COL1 = ? 

  AND COL2 = ?

ORDER BY COL1, COL2, COL3;

requires sort even though the order by is following the index sequence.

All it takes to "fix" it is change the label for VARCHAR(COL3) so that it is not the same as the column name, e.g. 

SELECT COL1, COL2, VARCHAR(COL3) COL33, COL4....

The latter select won't require sort.

 

Could you please investigate why the contents of the list of the columns in a SELECT has impact on the access path in a situation like this?

  • Guest
    Reply
    |
    Jun 6, 2019

    Hi Janet,
    In relation to this, may I ask what the sequence of accessed rows has to do with the data that is being retrieved afterwards?
    Db2 goes into the index and searches where to start scanning the range or pages. How do you relate this to the fact that the returned data is somehow later processed as it is being returned to the application?
    Regards,
    Mark

    [cid:image002.jpg@01D51C80.403DC800]Mark Smyth
    IT Business Service Management - Technology Operations
    7th Floor, Hume House, Pembroke Road, Dublin 4
    mark.m.smyth@aib.ie
    Technology Operations - Delivering Excellence Together

  • Admin
    Janet Figone
    Reply
    |
    May 9, 2019

    Thank you for submitting this Aha! Idea.

    Db2 for z/OS development has reviewed this and determined this is working as designed. In the example - by "renaming" or labelling the column VARCHAR(COL3) AS COL3 - the ORDER BY COL1, COL2, COL3 now replaces COL3 with VARCHAR(COL3). This no longer matches the index on COL1, COL2, COL3 and thus a sort is required. By labelling the VARCHAR(COL3) expression as a name that does not match the column name in the ORDER BY, the ORDER BY will continue to match the index sequence allowing the sort to be avoided.

    Sincerely,

    Db2 for z/OS Team