Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> PLSQL Data Type supporting more then 32760 characters
Hi,
I m facing a problem with Oracle PLSQL block.
I have written a PLSQL, which appends a string to a variable & that
process is
in loop, but it gives error when maximum limit is reached i.e.
32787(approx)
but I want to store more characters in that string. can anyone help me
with this
below is sample of my code
loop exit when length(str)>50000; str := str || 'hi how r u?\n'; end loop;
when I execute this code, it gives following error
I know it is problem of data type varchar2 which stores only 32787
characters,
If anybody can tell me how do I store more than 32787 characters in a
variable using PLSQL block.
Regards
Paresh shah
Received on Sun Jul 27 2003 - 23:27:57 CDT
![]() |
![]() |