I have a PLSQL Package that contains about 30 related procedures and functions.
my problem arrises with the following example:
IF X >= Y THEN
Z := Z + 1;
END IF;
the Z := Z + 1; is always executed.
if i program it it as follows it works as expected.
IF X >= Y THEN
Z := Z + 1;
ELSE
A := A;
END IF;
is this a problem with the DEBUG function PL/SQL, a problem with ORACLE, or the size of my package? the package is approx. 210KB.
Thanks,
Jerry
my problem arrises with the following example:
IF X >= Y THEN
Z := Z + 1;
END IF;
the Z := Z + 1; is always executed.
if i program it it as follows it works as expected.
IF X >= Y THEN
Z := Z + 1;
ELSE
A := A;
END IF;
is this a problem with the DEBUG function PL/SQL, a problem with ORACLE, or the size of my package? the package is approx. 210KB.
Thanks,
Jerry