数据泵导入ORA-39082报错解决
Posted plutozzl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据泵导入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-->
以上是关于数据泵导入ORA-39082报错解决的主要内容,如果未能解决你的问题,请参考以下文章
oracle中使用impdp数据泵导入数据提示“ORA-31684:对象类型已经存在”错误的解决