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 IC73601 Status: Geschlossen

INSERT TAKES TOO LONG

Produkt:
DB2 FOR LUW / DB2FORLUW / 950 - DB2
Problembeschreibung:
When trying to execute an INSERT statement to a table having 
auto-generated and bit string columns, it is noticed that it 
takes 
 a long time to complete. 
 
This happens if both of the conditions below are met: 
 
  1. it is up to DB2 to generate a value for generated column 
  2. client is trying to insert any value to binary column 
 
For example: 
 
create table N ( 
    i int generated by default as identity (starting from 0, 
increment by 1), 
    c char(1) for bit data); 
 
insert into N (c) values (x'00');
Problem-Zusammenfassung:
**************************************************************** 
* USERS AFFECTED:                                              * 
* All users running DB2 v9.5 FP7 and earlier.                  * 
**************************************************************** 
* PROBLEM DESCRIPTION:                                         * 
* When trying to execute an INSERT statement to a table having * 
*                                                              * 
* auto-generated and bit string columns, it is noticed that it * 
*                                                              * 
* takes                                                        * 
*                                                              * 
* a long time to complete.                                     * 
*                                                              * 
*                                                              * 
*                                                              * 
* This happens if both of the conditions below are met:        * 
*                                                              * 
*                                                              * 
*                                                              * 
* 1. it is up to DB2 to generate a value for generated         * 
* column                                                       * 
* 2. client is trying to insert any value to binary column     * 
*                                                              * 
*                                                              * 
*                                                              * 
* For example:                                                 * 
*                                                              * 
*                                                              * 
*                                                              * 
* create table N (                                             * 
*                                                              * 
* i int generated by default as identity (starting from 0,     * 
*                                                              * 
* increment by 1),                                             * 
*                                                              * 
* c char(1) for bit data);                                     * 
*                                                              * 
*                                                              * 
*                                                              * 
* insert into N (c) values (x'00');                            * 
**************************************************************** 
* RECOMMENDATION:                                              * 
* Upgrade product to DB2 v9.5 FP8                              * 
****************************************************************
Local-Fix:
Explicitly specify a value for generated column (if defined with 
GENERATE AS DEFAULT) 
insert into N (i, c) values (1, x'00');
verfügbare FixPacks:
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

Lösung
The problem has been fixed in DB2 v9.5 FP8
Workaround
Explicitly specify a value for generated column (if defined with 
GENERATE AS DEFAULT) 
insert into N (i, c) values (1, x'00');
Weitere Daten
Datum - Problem gemeldet    :
Datum - Problem geschlossen :
Datum - der letzten Änderung:
30.12.2010
05.07.2011
05.07.2011
Problem behoben ab folgender Versionen (IBM BugInfos)
9.5.FP8
Problem behoben lt. FixList in der Version
9.5.0.8 FixList