Are network filesytem mounts supported with data pump? I don't see any mention of them not working. However, the data pump ADD_FILE appears to hang. Here are the symptoms:
Filesystem Size Used Avail Use% Mounted on
/d1 32G 25G 5.4G 83% /oracle-local
server:/d2 105T 49T 57T 46% /oracle-network
This creates an exp.dmp file and works as expected:
CREATE OR REPLACE DIRECTORY DATA_PUMP_DIR AS '/oracle-local/';
DECLARE
hdnl NUMBER;
BEGIN
hdnl := DBMS_DATAPUMP.open( operation => 'EXPORT', job_mode => 'SCHEMA', job_name=>null);
DBMS_DATAPUMP.ADD_FILE( handle => hdnl, filename => 'exp.dmp', directory => 'DATA_PUMP_DIR', filetype => dbms_datapump.ku$_file_type_dump_file);
END;
This creates an exp.dmp file, but the DBMS_DATAPUMP.ADD_FILE appears to never finish. Just keeps spinning waiting for server to respond:
CREATE OR REPLACE DIRECTORY DATA_PUMP_DIR AS '/oracle-network/';
DECLARE
hdnl NUMBER;
BEGIN
hdnl := DBMS_DATAPUMP.open( operation => 'EXPORT', job_mode => 'SCHEMA', job_name=>null);
DBMS_DATAPUMP.ADD_FILE( handle => hdnl, filename => 'exp.dmp', directory => 'DATA_PUMP_DIR', filetype => dbms_datapump.ku$_file_type_dump_file);
END;