Oracle11g使用数据泵方式导入出现ORA-39151错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle11g使用数据泵方式导入出现ORA-39151错误相关的知识,希望对你有一定的参考价值。
参考技术A 可以在后边加上参数 table_exists_action=replace需要加入参数 remap_schame=原用户名:新用户名
例如
impdp estate/estate@orcl schemas=estate directory=zhxt dumpfile=ESTATE20160812LAOLING.DMP logfile=estate.log table_exists_action=replace remap_schame=原用户名:新用户名
数据泵导入ORA-39082报错解决
在使用数据泵进行模式级别导入导出时,导出成功后进行数据导入。出现报错:
可以看到存储过程对象F_NUM编译报错。
- 那么首先查看无效对象。
SYS@proe>col object_name for a30;
SYS@proe>select owner,object_name,object_type,status
from dba_objects
where status !=‘VALID‘
and owner not in (‘SYS‘,‘SYSTEM‘) 2 3 4 ;
- 对这个无效对象执行编译。
SYS@proe>alter procedure new_scott.F_NUM compile;
Warning: Procedure altered with compilation errors.
编译无效对象方法:
view: alter view view_name compile;
function: alter function function_name compile;
procedure: alter procedure procedure_name compile;
- 发现编译是不成功的,使用show error进行判断
SYS@proe>show errors procedure new_scott.F_NUM;
Errors for PROCEDURE NEW_SCOTT.F_NUM:
LINE/COL ERROR
-------- ------------------------------------------------
0/0 PL/SQL: Compilation unit analysis terminated
2/11 PLS-00201: identifier ‘EMPLOYEES.EMPLOYEE_ID‘ must be declared
!--more-->
以上是关于Oracle11g使用数据泵方式导入出现ORA-39151错误的主要内容,如果未能解决你的问题,请参考以下文章
Oracle 11g 数据泵技术详解(expdp impdp)
Oracle11g 数据泵导入数据库dmp文件时,表空间和用户名与我的表空间和用户名不一样怎么处理?