I am executing a stored procedure that creates an output file. My proc runs to completion, however the output file is limited to 32K. Is there a limit in Oracle that i must override or is it more likely a UNIX thing?
Are you creating your output from the stored proc by using DBMS_OUTPUT and doing SPOOL <filename> in SQLPlus. If this is the case it could be the DBMS_OUTPUT buffer size causing your problem. To resolve this before you do any calls to DBMS_OUTPUT call DBMS_OUTPUT.ENABLE( 1000000 ). This will expand the size of the buffer.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.