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 IC63297 Status: Closed

OR PREDICATE INCLUDING HOST VARIABLES OR PARAMETER MARKERS MAY BE
INCORRECTLY REMOVED

product:
DB2 FOR LUW / DB2FORLUW / 950 - DB2
Problem description:
An OR predicate of the form 
 
(C1 > :HV1 
 OR 
  C1 = :HV1 AND C2 > :HV2) 
 
may be incorrectly removed if the two conditions are met 
 
1. we have an index on columns (C1,C2), AND 
2. another predicate of the following form 
 
 (C1 < :HV4) 
 
-or- 
 
 (C1 <= :HV4) 
 
Note that the predicate (C1 <= :HV4) may be transformed from (C1 
BETWEEN :HV3 AND :HV4). 
 
If users replace each host variable with a literal, this problem 
does not occur. Likewise, if parameter markers replace those 
host variables, this problem does not occur because the 
parameter markers replacing the two :HV1 are treated as two 
different parameter markers. 
 
For usages of parameter markers that hit this problem, please 
see the example below. 
 
This problem is first found in DB2 Version 9.5 Fix Pack 4 and 
Version 9.7 GA. It is fixed in DB2 Version 9.5 Fix Pack 5 and 
Version 9.7 Fix Pack 1. 
 
Example: 
 
create table t1(c1 int,c2 int,c3 int); 
create index i1 on t1(c1,c2,c3); 
 
with parm(p1,p2,p3,p4,p5) as (values (cast(? as int),cast(? as 
int),cast(? as int),cast(? as int),cast(? as int))) 
select * 
from t1,parm p 
where t1.c1 between p.p4 and p.p5 
and    ((t1.c1 > p.p1) 
          or 
          (t1.c1=p.p1 and t1.c2>p.p2) 
          or 
          (t1.c1=p.p1 and t1.c2=p.p2 and t1.c3>p.p3) 
         ) 
;
Problem Summary:
**************************************************************** 
* USERS AFFECTED:                                              * 
* none                                                         * 
**************************************************************** 
* PROBLEM DESCRIPTION:                                         * 
* OR PREDICATE INCLUDING HOST VARIABLES OR PARAMETER MARKERS   * 
* MAY BE INCORRECTLY REMOVED                                   * 
**************************************************************** 
* RECOMMENDATION:                                              * 
* If users replace each host variable with a literal, this     * 
* problem does not occur. Likewise, if parameter markers       * 
* replace those host variables, this problem does not occur.   * 
****************************************************************
Local Fix:
available fix packs:
DB2 Version 9.5 Fix Pack 5 for Linux, UNIX, and Windows
DB2 Version 9.5 Fix Pack 6a for Linux, UNIX, and Windows
DB2 Version 9.5 Fix Pack 7 for Linux, UNIX, and Windows
DB2 Version 9.5 Fix Pack 8 for Linux, UNIX, and Windows
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
Fixed in DB2 v9.5 Fp5
Workaround
not known / see Local fix
Timestamps
Date  - problem reported    :
Date  - problem closed      :
Date  - last modified       :
21.09.2009
01.03.2010
01.03.2010
Problem solved at the following versions (IBM BugInfos)
9.5.FP5
Problem solved according to the fixlist(s) of the following version(s)
9.5.0.5 FixList