difficulty understanding loader/external table paths/permissioning
I have an application which loads/merges .txt files into database tables, which I am trying to port to Oracle. I've attempted both External Tables and SQL*Loader, but I am running into difficulties coding it to support remote operations. Specifically, operations where the data file may not exist on the same server as Oracle Database.
The problem is that Oracle Database is installed by default as a Local User on Windows. This means (apparently) that it cannot access network storage such as \\mybox\myfolder\data.txt. This is a problem because that's typically how I make the files available, since I may not have access to the filesystem on the box where Oracle Database is installed.