home clear 64x64
en blue 200x116 de orange 200x116 info letter User
suche 36x36
Neueste VersionenFixList
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
Haben Sie Probleme? - Kontaktieren Sie uns.
Kostenlos registrieren anmeldung-x26
Kontaktformular kontakt-x26

DB2 - Problembeschreibung

Problem IC78348 Status: Geschlossen

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

Produkt:
DB2 FOR LUW / DB2FORLUW / 970 - DB2
Problembeschreibung:
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-Zusammenfassung:
**************************************************************** 
* USERS AFFECTED:                                              * 
* ALL                                                          * 
**************************************************************** 
* PROBLEM DESCRIPTION:                                         * 
* See Error Description                                        * 
**************************************************************** 
* RECOMMENDATION:                                              * 
* Upgrade to DB2 Version 9.7 Fix Pack 6.                       * 
****************************************************************
Local-Fix:
Make V1 a regular view and change MQT definition to reference V1 
instead of common table expression.
verfügbare FixPacks:
DB2 Version 9.7 Fix Pack 6 for Linux, UNIX, and Windows
DB2 Version 9.7 Fix Pack 7 for Linux, UNIX, and Windows
DB2 Version 9.7 Fix Pack 8 for Linux, UNIX, and Windows
DB2 Version 9.7 Fix Pack 9 for Linux, UNIX, and Windows
DB2 Version 9.7 Fix Pack 9a for Linux, UNIX, and Windows
DB2 Version 9.7 Fix Pack 10 for Linux, UNIX, and Windows

Lösung
First fixed in DB2 Version 9.7 Fix Pack 6.
Workaround
keiner bekannt / siehe Local-Fix
Weitere Daten
Datum - Problem gemeldet    :
Datum - Problem geschlossen :
Datum - der letzten Änderung:
26.08.2011
06.06.2012
06.06.2012
Problem behoben ab folgender Versionen (IBM BugInfos)
9.7.FP6
Problem behoben lt. FixList in der Version
9.7.0.6 FixList