I'm trying to read from a file with oracle db using UTL_FILE. I can't find a file location I have access to. Whenever I use this code:
DECLARE
F1 UTL_FILE.FILE_TYPE;
BEGIN
F1 :=UTL_FILE.FOPEN('C:\TEMP','test_file.txt','R');
END;
I get: ORA-29280: invalid directory path
Why would that be?
Can I somehow make oracle show the location I have access to?
BR Kresten