Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> ORA-06502 when moving from 8.0.5 to 8.1.7
Hi,
I have a simple stored procedure that works in 8.0.5 but not in 8.1.7 - anyone have an idea why this does not work?
Code:
BUY_SELL (buy IN CHAR, sell IN CHAR )
RETURN CHAR IS
BEGIN
IF buy IS NOT NULL THEN
RETURN buy;
ELSE
RETURN sell;
END IF;
END buy_sell;
Any input will be greatly appreciated.
Thanks,
NM
Received on Tue Dec 18 2001 - 01:51:35 CST
![]() |
![]() |