场景: 服务器1,数据库oracle10g(HP_UX 11B) RAC+ASM,数据量约1.5T。IP:192.168.0.4
SQL> select * from v$version; BANNER ---------------------------------------------------------------- Oracle Database 10g EnterpriseEdition Release 10.2.0.1.0 - Prod PL/SQL Release 10.2.0.1.0 -Production CORE 10.2.0.1.0 Production TNS for 64-bit HP-UX 11b: Version10.2.0.1.0 - Production NLSRTL Version 10.2.0.1.0 -Production 服务器2(windows),oracle11g ,IP:192.168.10.253 SQL> select * from v$version; BANNER -------------------------------------------------------------------- Oracle Database 11g EnterpriseEdition Release 11.2.0.1.0 - Production PL/SQL Release 11.2.0.1.0 -Production CORE 11.2.0.1.0 Production TNS for 32-bit Windows: Version11.2.0.1.0 - Production NLSRTL Version 11.2.0.1.0 -Production
要求:在服务器2上利用expdp/impdp,实现远程数据库的备份,并恢复到另一个生产环境中。 现象:
C:\>expdp scott/tiger@mis01 directory=dmp_dir dumpfile=db_backup_20120427.dmp full=y network_link=DBLINK_MIS01 version=10.2.0.1.0 Export: Release 11.2.0.1.0 -Production on 星期五 4月 27 12:21:49 2012 Copyright (c) 1982, 2009, Oracleand/or its affiliates. All rightsreserved. UDE-00018: 数据泵客户机与数据库版本 10.2.0.1.0 不兼容。
求解:能不能不升级或降级方式,通过泵方式远程备份、恢复?
|