DB2 - Problem description
| Problem IT10763 | Status: Closed |
DB2 SHOULD ELIMINATE REDUNDANT CORRELATED PREDICATES (SINGLE-LEVEL) | |
| product: | |
DB2 FOR LUW / DB2FORLUW / A50 - DB2 | |
| Problem description: | |
DB2 should remove single-level correlation of redundant predicates within queries. Example: SELECT t1.c1 FROM t1 WHERE t1.c1 IS NULL AND EXISTS (SELECT 1 FROM t2 WHERE t1.c1 IS NULL) This query has a redundant correlated predicate (t1.c1 IS NULL). DB2 should eliminate the duplicate predicate as follows: SELECT t1.c1 FROM t1 WHERE t1.c1 IS NULL AND EXISTS (SELECT 1 FROM t2) | |
| Problem Summary: | |
**************************************************************** * USERS AFFECTED: * * ALL * **************************************************************** * PROBLEM DESCRIPTION: * * See Error Description * **************************************************************** * RECOMMENDATION: * * Update to DB2 Version 10.5 Fix Pack 7. * **************************************************************** | |
| Local Fix: | |
Avoid writing queries containing redundant correlated predicates. | |
| Solution | |
This problem is first fixed in DB2 Version 10.5 Fix Pack 7. | |
| Workaround | |
not known / see Local fix | |
| Timestamps | |
Date - problem reported : Date - problem closed : Date - last modified : | 18.08.2015 20.01.2016 20.01.2016 |
| Problem solved at the following versions (IBM BugInfos) | |
| Problem solved according to the fixlist(s) of the following version(s) | |
| 10.5.0.7 |
|