UTL_FILE.get_line(l_file, l_buffer) Buffer Overflow [message #41049] |
Wed, 20 November 2002 08:25  |
Adi
Messages: 38 Registered: May 2002
|
Member |
|
|
Thanks everyone for replying to my previous posting, in continuation of my earlier question I am getting an error while I am trying to read from a text file, as suggested I have set the buffer to its max size of
l_buffer VARCHAR2(2000);
but as my procedure loops through each line, this buffe is getting filled and I am getting the following error, can someone suggest how I can prevent this error, like can I clear the buffer after reading each line? if so how.Thanks in advance
*
ERROR at line 1:
ORA-20000: ORU-10027: buffer overflow, limit of 2000 bytes
ORA-06512: at "SYS.DBMS_OUTPUT", line 91
ORA-06512: at "SYS.DBMS_OUTPUT", line 58
ORA-06512: at "FILEREAD_UTL_PRC", line 35
ORA-06512: at line 1
|
|
|
|
|