0

I'd like to know, if is it possible to generate and retrieve the file using UTL_FILE package in oracle on the client side?

Ram
  • 25
  • 2
  • 8

1 Answers1

0

As far as I can tell, UTL_FILE operates with files on a server, stored in a directory accessible to Oracle. Therefore, you should CREATE DIRECTORY (oracle object) which points to a local directory (possibly, using UNC), grant required privileges (READ, WRITE most probably) and use that directory while working with UTL_FILE.

Littlefoot
  • 131,892
  • 15
  • 35
  • 57