Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: SQL buffer overflow.
bmolish_at_my-dejanews.com wrote:
>I am using Oracle 7.34 on NT and oracle SQL PLUS 3.3.
>When I try to do a simple SQL query to view a table., I receive the following
>error. I receive the following error
>
>"buffer overflow. Use SET command to reduce
>ARRAYSIZE or increase MAXDATA"
>
>I have used the SET command to try to reduce the arraysize and/or increase the
>maxdata command and it doesn't seem to work.
You probably have a LONG column in the table. Try "SET ARRAYSIZE 1" at the SQL> prompt. This will retrieve one row per fetch, and not overload the SQL*Plus buffer with LONG column data.
>Any suggestions would be appreciated. Also, who do I check to see what the
>Arraysize and maxdata are set to?
"show maxdata arraysize" at the SQL> prompt.
Chris
![]() |
![]() |