Oracle expdp を使用してリモート マシンにダンプ ファイルとログ ファイルをエクスポートしようとしています。ただし、次のエラーが発生します。
Connected to: Oracle Database 11g
Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing
options
ORA-39002: invalid operation
ORA-39070: Unable to open the log file.
ORA-29283: invalid file operation
ORA-06512: at "SYS.UTL_FILE", line 536
ORA-29283: invalid file operation
Oracle クライアントを使用してリモート マシンのホスト名「Local」で実行されるコマンドは次のとおりです。
SQL> create directory expdp_dir as '/vault2/expdp_dir';
SQL> grant read,write on directory expdp_dir to dbuser;
expdp dbuser/dbpwd@SID SCHEMAS=dbuser DIRECTORY=expdp_dir DUMPFILE=testDB24NOV17.dmp logfile=testDB24NOV17.log EXCLUDE=STATISTICS
ボールト 2 は、ホスト名が「Local」のリモート マシンにマウントされていることに注意してください。データベースは、ホスト名が TestDB のマシン上にあります。
OSはRHEL6です。
この操作を成功させるための考えやアイデアをいただければ幸いです。