Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> UTL_FILE package

UTL_FILE package

From: Jon <aaa_at_bbb.ccc>
Date: Fri, 21 May 2004 17:00:09 +0200
Message-ID: <c8l5ht$k01$1@unbe.sarenet.es>


trying to output a file using utl_file package I have created a directory object (windows server) and UTL_FILE.FOPEN in that directory:

CREATE DIRECTORY test AS 'd:\backup\test';
...

DECLARE
file_handle utl_file.file_type;
BEGIN
file_handle := utl_file.fopen ('test', 'file.txt', 'W');
...

the error is the following one: ORA-29280: invalid directory path Received on Fri May 21 2004 - 10:00:09 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US