Oracle Stored Proc problem
- From: "KK" <krallabandi@xxxxxxxxx>
- Date: 6 Sep 2006 11:47:57 -0700
Is there any way to declare a variable in stored procedure that should
hold --- length of text which is not known at design time.
For ex:
PROCEDURE MUpdate(
inFKey in varchar,
inSubFKey in varchar
)
IS
vCount NUMBER NOT NULL DEFAULT 0;
vDupTxt ---
BEGIN
vDupTxt := "---"
END MUpdate;
In the above example If I use vDupTxt VARCHAR(---), I have to specify
length (1.. 32767)
While executing the stored procedure at runtime, some times I may want
to assign longer text.
Appreciate your help!
Thanks
.
- Follow-Ups:
- Re: Oracle Stored Proc problem
- From: fitzjarrell@xxxxxxx
- Re: Oracle Stored Proc problem
- From: Maxim Demenko
- Re: Oracle Stored Proc problem
- Prev by Date: Re: system tablespace rollback segment is corrupted in 8i or 9i
- Next by Date: Re: Oracle Stored Proc problem
- Previous by thread: What is the order of query result by default ?
- Next by thread: Re: Oracle Stored Proc problem
- Index(es):
Relevant Pages
|