RMAN之一:快速入门(二)

2014-11-24 17:06:35 · 作者: · 浏览: 2
xists_action of skip ORA-39151: Table"SCOTT"."SALGRADE" exists. All dependent metadata and datawill be skipped due to table_exists_action of skip Processing object typeSCHEMA_EXPORT/TABLE/TABLE_DATA Processing object typeSCHEMA_EXPORT/TABLE/INDEX/INDEX Processing object typeSCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT Processing object typeSCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS Processing object typeSCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT Processing object typeSCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS Job "SYS"."SYS_IMPORT_FULL_01"completed with 4 error(s) at 20:27:41 由于原来已经存在这些表,因此先删除再导入: SQL> drop table emp; Table dropped. SQL> select * from emp; select * from emp * ERROR at line 1: ORA-00942: table or view does not exist [oracle@lujinhongdpdump]$ impdp sys/Lu123456 directory=dpump_dir1 dumpfile=scott.dmpschemas=scott Import:Release 11.2.0.1.0 - Production on Tue Apr 23 20:31:37 2013 Copyright (c)1982, 2009, Oracle and/or its affiliates. All rights reserved. UDI-28009:operation generated ORACLE error 28009 ORA-28009:connection as SYS should be as SYSDBA or SYSOPER Username: sysas sysdba Password: Connected to:Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With thePartitioning, OLAP, Data Mining and Real Application Testing options Master table"SYS"."SYS_IMPORT_SCHEMA_01" successfully loaded/unloaded Starting"SYS"."SYS_IMPORT_SCHEMA_01": sys/******** AS SYSDBA directory=dpump_dir1dumpfile=scott.dmp schemas=scott Processingobject type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA Processingobject type SCHEMA_EXPORT/TABLE/TABLE ORA-39151:Table "SCOTT"."DEPT" exists. All dependent metadata anddata will be skipped due to table_exists_action of skip ORA-39151:Table "SCOTT"."BONUS" exists. All dependent metadata anddata will be skipped due to table_exists_action of skip ORA-39151:Table "SCOTT"."SALGRADE" exists. All dependent metadata anddata will be skipped due to table_exists_action of skip Processingobject type SCHEMA_EXPORT/TABLE/TABLE_DATA . .imported "SCOTT"."EMP" 8.570 KB 14 rows Processingobject type SCHEMA_EXPORT/TABLE/INDEX/INDEX Processingobject type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT Processingobject type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS Processingobject type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT Processingobject type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS Job"SYS"."SYS_IMPORT_SCHEMA_01" completed with 3 error(s) at20:31:44

3、导出、导入参数

不管是expdp还是impdp均存在大量的参数,以对导入导出过程进行灵活的配置,详见《数据库管理艺术》第14章。

(1)重映射参数【导入参数】

一般情况下,不管使用哪个用户进行导入,导入的数据均归属到数据原有的用户名下。如使用sys用户进行导入操作,但数据是从scott导出的,则数据将被导入至scott模式下。除非使用remap_schema参数。

[oracle@datatest_db1_160 irms_gd]$ impdpsystem/Lu123456 directory=dpump_dir dumpfile=scott.dmp remap_schema=scott:test_datapump

类似的参数还有remap_table,remap_tablespace,remap_datafile, remap_data。

4、实例

从项目中把表名中包含BTS的表导出,然后导入至测试库中。

(1)导出

SQL>select * from dba_directories;
bash-4.1$ expdpHN_CM_IRMS_35/HN_CM_IRMS_351 directory=EXPDIR DUMPFILE=HN.DMPinclude=TABLE\:\"LIKE \'%BTS%\'\" 
(2)导入
[oracle@lujinhong /]$ impdp HN_CM_IRMS_35/HN_CM_IRMS_351directory=dpump_dir1 dumpfile=HN1.DMP
5、项目导出语句