在oracle 19c中导入转储文件时出错

js4nwp54  于 2023-04-11  发布在  Oracle
关注(0)|答案(1)|浏览(510)

我收到以下错误消息。

Error importing dump file -
    Import: Release 19.0.0.0.0 - Production on Thu Apr 6 08:01:06 2023
    Version 19.3.0.0.0
    Copyright (c) 1982, 2019, Oracle and/or its affiliates.  All rights reserved.
    Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
    ORA-39002: invalid operation
    ORA-39070: Unable to open the log file.
   ORA-29283: invalid file operation: cannot open file [29435]
kkih6yb8

kkih6yb81#

这就是错误:
ORA-39070:无法打开日志文件。
为了使用数据泵导入实用程序导入数据(不清楚您是否使用它,或者它是 * 原始 * IMP实用程序;哪一个?),您必须有一个目录(指向操作系统目录(文件夹)的Oracle对象),并向使用该目录的用户授予该目录上的某些权限。目录通常位于数据库服务器上(不是您的本地PC,除非PC实际上是 * 数据库服务器)。
我们假设本次操作中使用的用户名为DIPAK,目录名为EXPIMP_DIR,特权用户(如SYS)必须

grant read, write on directory expimp_dir to dipak;

由于您(实际上是Import实用程序)无法打开日志文件,因此看起来您只有READ权限,而没有WRITE权限。如果是这样,请另外授予WRITE权限。

相关问题