expdp 中ORA-39002、ORA-39070错误详解及解决办法

前端之家收集整理的这篇文章主要介绍了expdp 中ORA-39002、ORA-39070错误详解及解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

@H_5020@使用expdp时,遇到”ORA-39002、ORA-39070......”连续报错。


@H
502_0@

1、 遇到的问题


<div class="jb51code">
<pre class="brush:sql;">
C:\Users\Administrator>expdp 'sys/system as sysdba' directory=backup full=y dumpfile=fullexp.dmp logfile=fullexp.log;

Export: Release 10.2.0.3.0 - Production on Wednesday,18 April,2012 12:13:15

Copyright (c) 2003,2005,Oracle. All rights reserved.

Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production

With the Partitioning,OLAP and Data Mining 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 475

ORA-29283: invalid file operation

@H_502_0@

2、 问题解决

@H_502_0@Google了一下,发现了问题原因:

@H_502_0@(1)、查看directory 对象

@H_502_0@ select * from dba_directories;

@H_502_0@

@H_502_0@----- ------------------------- ------------------

@H_502_0@SYS BACKUP E:\oradata\backup

@H_502_0@而操作系统上,E:\oradata下,没有backup目录。因为目录不存在,所以会出现” ORA-39070: Unable to open the log file.”错误

@H_502_0@ (2)、创建”E:\oradata\backup”目录,或者修改directory 对象,问题解决

@H_502_0@

3、导致问题出现的潜在原因。

@H_502_0@ Oracle 10g 下创建directory对象,即使所引用的目录不存在,该命令也可以正常执行,这样就容易造成这样的错误

@H_502_0@感谢阅读,希望能帮助到大家,谢谢大家对本站的支持

原文链接:https://www.f2er.com/oracle/64944.html

猜你在找的Oracle相关文章