home clear 64x64
en blue 200x116 de orange 200x116 info letter User
suche 36x36
Latest versionsfixlist
11.1.0.7 FixList
10.5.0.9 FixList
10.1.0.6 FixList
9.8.0.5 FixList
9.7.0.11 FixList
9.5.0.10 FixList
9.1.0.12 FixList
Have problems? - contact us.
Register for free anmeldung-x26
Contact form kontakt-x26

DB2 - Problem description

Problem IC78347 Status: Closed

DB2 might abend while creating MQT whose definition is recursive and has
common table expression as well as IN predicate

product:
DB2 FOR LUW / DB2FORLUW / 950 - DB2
Problem description:
MQT creation might trap with infinite recursive calls of 
sqlnq_reroutable_ast_rec in the trap file. This happens only 
when MQT definition has the following characteristics: 
1. MQT definition has CSE (Common Sub Expression), called V1 
2. MQT has recursive UNION ALL construct, called V2. V2 has two 
union all branches. The first union branch references V1 and the 
second branch references V1 and V2 of course. 
3. V2 second branch has IN predicate and the element list 
consists of multiple values or expressions. 
 
Example: 
-- create a base table 
create table t1(c1 int, c2 int); 
-- mqt creation traps 
create table mqt as ( 
with v1(c1, c2) as (select * from t1), 
      v2(level, c1, c2) as (select 1, v1.* from v1 union all 
                                  select parent.level+1, 
parent.c1, parent.c2 from v2 parent, v1 child 
                                  where parent.c1 = child.c1 and 
child.c2 in (1,2) and parent.level < 10) 
select c1, c2 from v2 
) data initially deferred refresh deferred;
Problem Summary:
**************************************************************** 
* USERS AFFECTED:                                              * 
* All                                                          * 
**************************************************************** 
* PROBLEM DESCRIPTION:                                         * 
* See Problem Description above.                               * 
**************************************************************** 
* RECOMMENDATION:                                              * 
* Upgrade to DB2 Version 9.5 Fix Pack 9.                       * 
****************************************************************
Local Fix:
Make V1 a regular view and change MQT definition to reference V1 
instead of common table expression.
available fix packs:
DB2 Version 9.5 Fix Pack 9 for Linux, UNIX, and Windows
DB2 Version 9.5 Fix Pack 10 for Linux, UNIX, and Windows

Solution
First fixed in DB2 Version 9.5 Fix Pack 9.
Workaround
not known / see Local fix
Timestamps
Date  - problem reported    :
Date  - problem closed      :
Date  - last modified       :
26.08.2011
14.03.2012
14.03.2012
Problem solved at the following versions (IBM BugInfos)
9.5.FP9
Problem solved according to the fixlist(s) of the following version(s)
9.5.0.9 FixList