Using EXPDP export a schema in a 11.2.0.2 database and import the dump into a 10.2.0.3 database.
If a normal expdp export is carried out and you attempt to import that dump into a 10.2.0.3 database the following error will be thrown on import.
impdp xxxxxxxx/xxxxxx parfile=imp.par
Import: Release 10.2.0.3.0 – 64bit Production on Tuesday, 07 June, 2011 10:43:15
Copyright (c) 2003, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 – 64bit Production
With the Partitioning, OLAP and Data Mining options
ORA-39001: invalid argument value
ORA-39000: bad dump file specification
ORA-39142: incompatible version number 3.1 in dump file
“/u01/oracle/dpdump/expdat.dmp”
To avoid this error -
While exporting data in the 11g database add the following to the export syntax ( version=10.2)
expdp xxxxx/xxxxx parfile=exp.par version=10.2
Now import the dump into the 10.2.0.3 database.
相关推荐
使用expdp时,遇到”ORA-39002、ORA-39070……”连续报错。 1、 遇到的问题 C:\Users\Administrator>expdp 'sys/system as sysdba' directory=backup full=y dumpfile=fullexp.dmp logfile=fullexp.log; Export: ...
expdp userid='sys/1@orcl as sysdba' schemas=ncadmin directory=DATA_PUMP_DIR dumpfile=D:\nc56mgsdn.dmp logfile=D:\ncadmin.log version=10.2.0.1.0 ``` - **userid**: 这里指定了以`sys`用户身份登录,密码为...
3. 基于当前 SCN 为该表做一次初始化(expdp-impdp) 4. 在复制进程加入 map owner.table_name, target owner.table_name,filter ( @GETENV ("TRANSACTION", "CSN") >scn 号);并重启进程。 如果问题仍然没有得到...
在IT领域,尤其是在数据库管理与维护中,遇到ORA-01460错误是常见的问题之一,这通常意味着系统在尝试执行数据转换时遇到了未实现或不合理的请求。本文将深入探讨ORA-01460错误的成因、影响以及提供一系列有效的解决...
ORA-39142: 版本号 4.1 (在转储文件 “叉叉叉.expdp” 中) 不 兼容 之类 后来才知道,在12C中备份出来时,应指定版本信息,例如我要导进11g的库(具体版本为11.1.0.6.0,打开sqlplus就能看到),则version=11.1....
在Oracle数据库管理中,"IMP-00010:不是有效的导出文件,头部验证失败" 是一个常见的导入错误,通常发生在尝试使用`expdp`(数据泵导出)或`impdp`(数据泵导入)工具进行数据迁移或备份恢复时。这个错误意味着系统...
如果在使用expdp或impdp时遇到权限问题,如ACL(访问控制列表)限制,可能需要检查并调整用户的数据库访问权限,确保他们具有执行数据泵操作所需的权限,例如`EXP_FULL_DATABASE` 和 `IMP_FULL_DATABASE`。...
oracle expdp导出blob字段遇到ora-01555报错的解决方案
expdp sys/oracle directory=data_pump_dir dumpfile=mydata.dmp logfile=expdp_mydata.log ``` ### 二、导入(impdp) 1. **命令格式**: ``` impdp [username/password]@[database_connection] directory=dir_...
Oracle数据库是全球广泛使用的大型企业级关系型数据库管理系统,它提供了丰富的工具来管理和维护数据库,其中之一就是`expdp`(Export Data Pump)。`expdp`是Oracle Data Pump Export的命令行工具,用于导出数据库...
SELECT deferred_tran_id, destination, error_number, error_msg FROM deferror; ``` 该查询将显示哪些延迟事务没有更新到物料视图站点,并帮助定位具体问题。 #### 二、如何使用 Oracle 数据泵 **Oracle 数据泵...
该软件直接从oracle exp & expdp 结果转储文件中读取数据。 即使文件被恶意软件/勒索软件损坏或损坏,该软件仍然可以扫描整个文件,并找到数据的好部分。 IMP-00009 导出文件异常结束 IMP-00037 字符集标记未知 ORA-...
### Oracle导dmp出现文件ORA-12154 TNS 无法解析指定的连接标识符解决方案 #### 问题背景 在进行Oracle数据库的操作时,经常会遇到“ORA-12154 TNS 无法解析指定的连接标识符”这样的错误提示。此问题通常发生在...
它分为EXPDP(导出)和IMPDP(导入)两个部分。 4. RMAN:恢复管理器,Oracle数据库的核心备份和恢复工具,能进行完整数据库、表空间或单个数据文件的备份,并提供恢复功能。 二、ora-sys-tools-master可能包含的...
在大数据量和高可用性需求的现代数据库环境中,RMAN和第三方工具如Data Pump(expdp/impdp)通常更受青睐,因为它们提供了更高效、更灵活的备份和恢复策略,支持并行操作和网络传输,还能进行增量备份和只读表空间的...
--- 统一认证: 使用数据泵导入导出(只能在oracle的本地进行,如果是服务器需远程) 前提条件(为导入导出设置保存及读取文件路径):
Oracle Database 10g引入了最新的数据泵(Data Dump)技术,使DBA或开发人员可以将数据库元数据(对象定义)和数据快速移动到另一个oracle数据库中. 数据泵导出导入(EXPDP和IMPDP)