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 -> Re: UTL_FILE package

Re: UTL_FILE package

From: Branko Milosavljevic <mbranko_at_EUnet.yu>
Date: 1998/01/27
Message-ID: <6ajvu9$i5b$1@SOLAIR2.EUnet.yu>#1/1

Mark Schapira wrote in message ...
>I am trying to use the UTL_FILE package on a HP-UX server and I am running
>into the following problem.
>The parameter utl_file_dir contains the path of the file that I am writing
>into. It is known by Oracle.
>The directory referenced utl_file_dir is present and fully writable. ie.
>the mode is 777.
>However, when I a test PLSQL program to open the open a file in the
>directory and write a few lines into it, I get an INVALID_PATH exception.
>What could be the cause of this problem.
>
>Thanks in advance for any help
>
>Mark Schapira
>mschapir_at_msn.com
>

It might be the missing slash at the end of directory name, like in this example:

DECLARE
  hFile UTL_FILE.FILE_TYPE;
BEGIN
  hFile = UTL_FILE.fopen('/exports/home/mydir/', 'myfile', 'r');   ...

Regards,
Branko Milosavljevic Received on Tue Jan 27 1998 - 00:00:00 CST

Original text of this message

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