when i am trying to use utl_file.fopen it gave me an error ORA-29280: utl_file.fopen invalid directory path error
and this what i did:
[code]
CREATE DIRECTORY mydir AS ‘C:\New’;
[/code]
[code]
GRANT READ ON DIRECTORY mydir TO myuser;
[/code]
then using
[code]
v_FileHandle := UTL_File.FOpen(‘mydir’, ‘myfile’, ‘w’, 32767);
[/code]
and this the final error :
ORA-29280: invalid directory path