数据泵导出报错ORA-39002、ORA-39070、ORA-29283、ORA-06512、ORA-29283

问题描述:数据泵导出报错ORA-39002、ORA-39070、ORA-29283、ORA-06512、ORA-29283
C:\Users\Administrator>expdp system/newECARD2017 directory=expdp_dir dumpfile=cc
enseecard%U.dmp logfile=ccenseecard_export.log schemas=ccense

Export: Release 11.2.0.1.0 - Production on 星期四 5月 7 23:13:11 2020

Copyright © 1982, 2009, Oracle and/or its affiliates. All rights reserved.

连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Produc
tion
With the Partitioning, OLAP, Data Mining and Real Application Testing options
ORA-39002: 操作无效
ORA-39070: 无法打开日志文件。
ORA-29283: 文件操作无效
ORA-06512: 在 “SYS.UTL_FILE”, line 536
ORA-29283: 文件操作无效
问题原因:目录无效
SQL> select directory_name from dba_directories where directory_name=‘EXPDP_DIR’
;

DIRECTORY_NAME DIRECTORY_PATH

EXPDP_DIR D:\expdpbak2020\ecard
处理办法:删除目录重建目录并授权

SQL> drop directory EXPDP_DIR;

目录已删除。
SQL> create directory EXPDP_DIR as ‘d:\expdpbak2020\ecard’;

目录已创建。
说明:磁盘符小写
SQL> grant read,write on directory EXPDP_DIR to public;

授权成功。

你可能感兴趣的:(oracle)