3

我想导入一个Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production

使用命令:

impdp SOLVIA/SOLVIA900@IMMBO DUMPFILE=week_exp_immbo.dmp LOGFILE=week_exp_immbo.log REUSE_DATAFILES=YES exclude=tablespace:"IN ('IMMBO')"

但我得到了这个错误:

Connected to: Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production
ORA-39002: invalid operation
ORA-39070: Unable to open the log file.
ORA-39145: directory object parameter must be specified and non-null

我必须先创建日志文件吗?

4

1 回答 1

4

您需要为 Directory 参数提供值。

impdp SOLVIA/SOLVIA900@IMMBO 
    DIRECTORY=TEST_Dir            <-- You need to provide value for this param
    DUMPFILE=week_exp_immbo.dmp 
    LOGFILE=week_exp_immbo.log 
    REUSE_DATAFILES=YES 
    exclude=tablespace:"IN ('IMMBO')"

Oracle 中的 Directory 对象在哪里TEST_Dir,它指向文件所在的位置,从那里导入数据。

例子:

CREATE DIRECTORY Test_Dir AS 'C:\TestFolder';

还要确保向该目录上的用户授予读取、写入权限。

GRANT READ, WRITE ON DIRECTORY Test_Dir TO UserName;
于 2018-01-15T13:54:16.417 回答