Re: How to limit the size of the returned value from a Stored Function?
From: Lun Wing San <wslun_at_hkpc.org>
Date: 1996/11/12
Message-ID: <3288F83D.2004_at_hkpc.org>#1/1
Date: 1996/11/12
Message-ID: <3288F83D.2004_at_hkpc.org>#1/1
Vahidt A. Tadjkarimi wrote:
> I was wondering if it is possible to limit the size of a returned
> value from a Stored Function. Here is a small example:
>
> CREATE OR REPLACE FUNCTION plus_minus_f (val_1 IN NUMBER, val_2 IN
> NUMBER) RETURN CHAR
>
> Once I call this function from a view or by itself the size of the
> returned value is VARCHAR2(2000) !!! Any hints?
You can try to use:
CREATE OR REPLACE FUNCTION plus_minus_f (val_1 IN NUMBER, val_2
INNUMBER)
RETURN VARCHAR2
-- Name : Lun Wing San Title : Oracle developer of the Hong Kong Productivity Council System Administrator and Oracle DBA of the Quick Response Center Email Addr. : sunny_at_hkpc.org Telephone : 852-2788-5841Received on Tue Nov 12 1996 - 00:00:00 CET