oracle 错误总结
C:Usersbim>impdp nskftest/kingdee@dms directory=db_bak dumpfile=weiyan170424.dmp logfile=testimpdp.log Import: Release 11.2.0.4.0 - Production on 星期五 8月 4 15:19:40 2017 Copyright (c) 1982,2011,Oracle and/or its affiliates. All rights reserved. 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Produc tion With the Partitioning,OLAP,Data Mining and Real Application Testing options ORA-39006: 内部错误 ORA-39213: 元数据处理不可用 SQL> execute sys.dbms_metadata_util.load_stylesheets; BEGIN sys.dbms_metadata_util.load_stylesheets; END; * 第 1 行出现错误: ORA-01157: 无法标识/锁定数据文件 201 - 请参阅 DBWR 跟踪文件 ORA-01110: 数据文件 201: 'H:APPADMINISTRATORORADATADMSTEMP01.DBF' ORA-06512: 在 "SYS.DBMS_METADATA_UTIL",line 2526 ORA-06512: 在 line 1 SQL> alter database datafile 'H:APPADMINISTRATORORADATADMSTEMP01.DBF' offline drop; alter database datafile 'H:APPADMINISTRATORORADATADMSTEMP01.DBF' offline drop * 第 1 行出现错误: ORA-01516: 不存在的日志文件,数据文件或临时文件 "H:APPADMINISTRATORORADATADMSTEMP01.DBF" SQL> alter database tempfile 'H:APPADMINISTRATORORADATADMSTEMP01.DBF' dropincluding datafiles; 数据库已更改。 SQL> alter tablespace temp add tempfile 'D:APPADMINISTRATORORADATADMSTEST02.DBF' size 100M autoextend on; 表空间已更改。 SQL> exec dbms_metadata_util.load_stylesheets; PL/SQL 过程已成功完成。 Import: Release 11.2.0.4.0 - Production on 星期一 8月 7 09:50:18 2017 Copyright (c) 1982,Oracle and/or its affiliates. All rights reserved. ;;; 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning,Data Mining and Real Application Testing options ORA-39014: 一个或多个 worker 进程已过早地退出。 ORA-39029: worker 进程 1 (进程名为 "DW00") 过早地终止 ORA-31671: Worker 进程 DW00 有未处理的异常错误。 ORA-04063: package body "SYS.KUPW$WORKER" 有错误 ORA-06508: PL/SQL: 无法找到正在调用 : "SYS.KUPW$WORKER" 的程序单元 ORA-06512: 在 line 2
解决方法: 1、首先尝试去编译这个包: 2、如果上述报错,尝试下面的方法: 再执行导出语句。 ORA-01119:创建数据库文件'D:oraclesonar.dbf'时出错 drop tablespace sonar including contents and datafiles;
ORA-39112: dependent object type comment skipped 原文章: http://blog.itpub.net/29654823/viewspace-1779828/ 今天要把测试库schema用expdp倒进生产数据库中,本来非常简单的几个步骤,遇到了大量的 ora-39112: dependent object type comment skipped 这个错误。 网上查了查,导致这个问题的情况大致有一下几个情况, 1,在原来测试库中,目标schema和别的用户相互授权了,可是你导出的dmp中没有包含所有的用户,导入时对应用户没有创建。 仔细一想还真是这样的情况。 解决办法: (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |