Guest User

Untitled

a guest
Jan 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. CREATE DIRECTORY ABC AS '/abc';
  2.  
  3.  
  4. DECLARE
  5. fileHandler UTL_FILE.FILE_TYPE;
  6. BEGIN
  7. fileHandler := UTL_FILE.FOPEN('ABC', 'test_file.txt', 'W');
  8. UTL_FILE.PUTF(fileHandler, 'Writing to a filen');
  9. UTL_FILE.FCLOSE(fileHandler);
  10. END;
  11.  
  12. 29283. 00000 - "invalid file operation"
  13. *Cause: An attempt was made to read from a file or directory that does
  14. not exist, or file or directory access was denied by the
  15. operating system.
  16. *Action: Verify file and directory access privileges on the file system,
  17. and if reading, verify that the file exists.
Add Comment
Please, Sign In to add comment