Monday, March 24, 2025

Db2 Dummy Table Replacement Simplified

I’ve written in the past about the performance advantages of using tableless queries instead of the Db2 dummy table – SYSDUMMY1. As our IBM Expert Labs team has helped clients convert their queries from using SYSDUMMY1 to tableless syntax, we’ve found that some conversions are easier than others.

Simple SYSDUMMY1 queries like this one are easy to change to use a VALUES statement and there’s very little risk of breaking the query. 

  SELECT CURRENT DATE FROM sysibm.sysdummy1

 

The conversions get more interesting when SYSDUMMY1 is referenced in a query along with “real” tables that store your business data. Here’s an example of that type of query:

SELECT 1 INTO :hv1 FROM sysibm.sysdummy1
     WHERE EXISTS (SELECT 1 FROM table1 
                    WHERE col1=:hv2 AND col2=:hv3)

 

While the following converted version of this query is not super complex, the number of required changes to eliminate the usage of SYSDUMMY1 does increase the risk of the query modifications accidentally causing the query to return different results.

WITH return1 (rtnval) AS (VALUES 1)
SELECT 1 INTO :hv1 FROM return1
  WHERE EXISTS (SELECT 1 FROM table1 
                  WHERE col1=:hv2 AND col2=:hv3)

 

Even though the risk of breaking the query is still low, I’ve recently started to recommend a simpler conversion method. This method involves creating an SQL view and replacing the SYSDUMMY1 reference with the name of your view.

 

First, let’s look at the definition of this view. Effectively this view uses the VALUES statement to return the same column value and column name as Db2’s SYSDUMMY1 table. The earlier conversion examples don’t reference the column value or column name, but your application may have SYSDUMMY1 queries that are dependent on the column value or name.

CREATE VIEW mylib.mydummy1 AS
  WITH returny (ibmreqd) AS (VALUES 'Y')
  SELECT ibmreqd FROM returny

 

Now that a view is in place providing a logical equivalent of SYSDUMMY1 – converting a query from SYSDUMMY1 to use tableless syntax is as simple as changing the FROM clause. Essentially, all that’s needed is the Find & Replace option in your code editor is all that’s needed as demonstrated in thew new

SELECT 1 INTO :hv1 FROM mylib.mydummy1 
  WHERE EXISTS (SELECT 1 FROM table1 
                  WHERE col1=:hv2 AND col2=:hv3)

 

I think the only downside of using this view-based approach is that one may overlook whether the SYSDUMMY1 reference is even needed. I’ve recently worked with clients that used SYSDUMMY1 in the following manner. 

SELECT col2 FROM table1 
  WHERE col1 = (SELECT someUDF(:hv1) FROM sysibm.sysdummy1)

 

Not sure why the programmers thought the Db2 dummy table needed to be used – maybe the user-defined function reference. However, a tableless query is also not needed in this case. The better correction of the query would be to change the query to the following:

SELECT col2 FROM table1 WHERE col1 = someUDF(:hv1)


Hopefully, you are able to see how this view-based approach simplifies the conversion to tableless query syntax and eliminates the risk of accidentally breaking your query.

 

6 comments:

  1. Interesting article, but may be I miss something or did not understand ... but why you need a sub-select and accessing SYSDUMMY1 or a CTE with Values at all?
    The following query returns exactly the same result:
    Select 1 into :HVI
    from Table1
    Where Col1 = :HV2 and Col2 = :HV3
    Limit 1;
    as this Query
    Select 1 into :HV1
    from SysIbm.SysDummy1
    Where Exists(Select 1
    from Table1
    Where Col1 = :HV2 and Col2 = :HV3);
    When accessing the SYSIBM.SYSDUMMY table a full table scan must be performed on this table.
    When including a CTE or a Sub-Select with VALUES the VALUES list must be performed.
    Both steps are not necessary when using the first example.

    ReplyDelete
    Replies
    1. I agree with you for this particular example, but I've seen other more complex sysdummy1 examples that cannot be completely eliminated as you suggest.

      Delete
  2. SYSDUMMY1 is kind of horrible to read in codes... but it is still present in the official doc 7.5 sql examples for various functions... pls fix at least the official docs...

    ReplyDelete
    Replies
    1. I agree - might be a good suggestion to submit via the IBM ideas portal - https://www.ibm.com/support/pages/welcome-ibm-ideas-portal

      Delete
  3. seems to me exceptionally convoluted.
    to check or assert for key or criteria existence (i.e. set membership), just use
    SELECT COUNT(DISTINCT 1) FROM table1 WHERE col1=:hv2 AND col2=:hv3
    pretty clear to me, and it would get neat 0 / 1 value
    add a NULLIF if you really want the null (??)
    Or a good old CHAIN in case of native.

    ReplyDelete