Question: I am trying to write
a report in file but when the file size exceeds 32kb it starts
breaking and gives me ORA-29285. I am trying to create a report file
through collection, i.e., first I have written everything on
collection and then iterating it and writing it in file. That
is the whole process...
So how do I
find out the cause of this ORA-29285 error?
Answer:
To diagnose any
error, start by using the
oerr utility to display the ORA-29285 error:
ORA-29285 - file write error
Cause - Failed to write
to, flush, or close a file.
Action - Verify that
the file exists, that it is accessible, and that it is open in write
or append mode.
When using the utl_file package, it is
important to remember that the utl_file has a 32k length limit. (And are
you putting carriage returns in the writes?) Review this link on
Writing Oracle BLOB to OS file
which
shows how to write the data out in pieces if it is over 32kb.
Be sure to open like this:
UTL_FILE.FOPEN ().
And close like this:
UTL_FILE.FCLOSE ().
The error can be something
as simple as exceeding a maximum line length here, or it could be
not supplying a value for a max line length. It could be that
there is an error in UTL_FILE.FOPEN ( ) like needing one more
parameter specified in the code.
So look over those sections carefully!
|
|
|
|
Guarantee your Success!
Oracle is the
world's most complex, robust and flexible database, considered
impossible to master without a mentor.
That's why all BC
Oracle trainers are working professionals, experts in Oracle who
share their tips and secrets. |
|
| |
|
Burleson is the American Team

Note:
This Oracle
documentation was created as a support and Oracle training reference for use by our
DBA performance tuning consulting professionals.
Feel free to ask questions on our
Oracle forum.
Verify
experience!
Anyone
considering using the services of an Oracle support expert should
independently investigate their credentials and experience, and not rely on
advertisements and self-proclaimed expertise. All legitimate Oracle experts
publish
their Oracle
qualifications.
Errata?
Oracle technology is changing and we
strive to update our BC Oracle support information. If you find an error
or have a suggestion for improving our content, we would appreciate your
feedback. Just
e-mail:
and include the URL for the page.
Copyright © 1996 - 2012
All rights reserved.
Oracle ©
is the registered trademark of Oracle Corporation.
|
|