Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> PL/SQL: cheking for the OVERFLOW of an Variable
Dear Sir/Madam
In PL/SQL how can I Find the maximum length of an variable inside the
PL/SQL block
here is my problem (Image only)
CREATE OR REPLACE PROCEDURE test1(strin varchar2) is
DECLARE
tstr2 abctablel.col1%TYPE;
......
Begin
LOOP
tstr2 := substr(strin,instr(strin, '\') + 1);
IF LENGTH(tstr2)<=LENGTH(abctablel.col1) THEN
VVVVVVVVVVVVVVVVVV?????????? do something
.......
.......
printme(' Thanks for the proper input'); exit; ELSE printme('You have some serious Problem ,chek the size'); exit;
How can i Compare the [VVVVVVVVVVVVVVVVVV?????????? ] Portion
Thank you in ADVANCE Received on Mon Jun 27 2005 - 07:25:01 CDT
![]() |
![]() |