Is there any easy way to save BLOB as a binary file into client-side file system with using of only standard Oracle utilities (such as sqlplus or sqlldr for example)?
I've already looked onto UTL_FILE
package, but actually I have two problems with it:
- I have doubts that it can work with client-side file system.
- I have no privilege to
CREATE DIRECTORY
in schema where BLOBs are saved and so that I can't work withUTL_FILE
at all.
Also, I know that I can just write some homebred utility in any language (Java for example); connect to Oracle, select my BLOB and save it in binary format. But I'd look for some easier way before doing this.