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

Re: utl_file

From: Christopher Beck <clbeck_at_us.oracle.com>
Date: Wed, 14 Oct 1998 22:40:03 GMT
Message-ID: <36292764.33359268@dcsun4.us.oracle.com>


On Wed, 14 Oct 1998 23:20:24 +0200, "Arndt Humpert" <arndt.humpert_at_pcm.bosch.de> wrote:

>Hello,
>i've problems to set NT d:\Files in init%Inst%.ora.
>Best regards
>Arndt
>

Case is important so if your init.ora file has the entry ...

utl_file_dir = d:\Files

then when you open a file using utl_file.fopen you must use the same case. So you have to do the following ...

utl_file.fopen( location => 'd:\Files',

                filename => 'myfile.txt',
                open_mode => 'a' );


hope this helps.

chris. Received on Wed Oct 14 1998 - 17:40:03 CDT

Original text of this message

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