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

SQL20524 RC=3 returned when function paramater, local variable, or
transition variable used as period-specification

Produkt:
DB2 FOR LUW / DB2FORLUW / A10 - DB2
Problembeschreibung:
SQL20524 rc=3 is returned when one of the following is used 
as a period-specification: 
 
- (inlined) SQL function parameter 
- (inlined) SQL function variable 
- (inlined) trigger transition variable 
 
For example: 
 
create table cust ( 
  eff_start_dt date not null with default '2013-01-01', 
  eff_end_dt date not null with default '2014-01-01', 
  period business_time(eff_start_dt, eff_end_dt) 
); 
 
create or replace function custfunc (eft_date date) 
 returns int 
 language sql 
begin atomic 
 return ( select count(*) 
          from cust 
          for business_time as of eft_date ); -- 
end;
Problem-Zusammenfassung:
**************************************************************** 
* USERS AFFECTED:                                              * 
* ALL                                                          * 
**************************************************************** 
* PROBLEM DESCRIPTION:                                         * 
* See Error Description                                        * 
**************************************************************** 
* RECOMMENDATION:                                              * 
* Upgrade to version 10.1 Fix Pack 5.  This is a server side   * 
* fix.                                                         * 
****************************************************************
Local-Fix:
Change the function or trigger from inlined to compiled. 
Alternatively, create a separate stored procedure to update a 
global variable. 
 
-- Create global variable 
create or replace variable V date; 
 
-- Create stored procedure to set the global variable 
create or replace procedure setPDate(d date) 
language sql 
deterministic 
no external action 
begin 
  set V=d; -- 
end; 
 
create or replace function custfunc (eft_date date) 
 returns int 
 language sql 
begin atomic 
 call setPDate(eft_date); -- 
 return ( select count(*) 
          from cust 
          for business_time as of V ); -- 
end;
Lösung
First fixed in v10.1 Fix Pack 5.
Workaround
SEE LOCAL FIX.
Weitere Daten
Datum - Problem gemeldet    :
Datum - Problem geschlossen :
Datum - der letzten Änderung:
29.09.2014
13.07.2015
13.07.2015
Problem behoben ab folgender Versionen (IBM BugInfos)
Problem behoben lt. FixList in der Version
10.1.0.5 FixList