【发布时间】:2020-03-19 21:49:56
【问题描述】:
我有一个从不熟悉的数据库导出的 Oracle 转储文件。
我需要在 Windows 中使用 SqlDeveloper 或命令行将其导入我的 Oracle DB。
在 SqlDeveloper 中使用数据泵导入向导时,出现以下错误:
ORA-00942: table or view does not exist
使用 CMD 时出现以下错误:
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
我的命令行:
impdp USER/password DUMPFILE=c:\folder_name\file_name.dmp TABLES=All LOG=dump_log.log
我尝试了不同的变体,但每次都出现相同的错误。
感谢您的帮助。
【问题讨论】:
标签: oracle import impdp oracle-dump