帶where查詢條件的expdp/impdp

測試oracle

expdp測試

1> 建表it

create table test5 ecology.test5 (id int);io

 

2> 插入5條數據table

insert into ecology.test5 vaules (1);ast

insert into ecology.test5 vaules (2);test

insert into ecology.test5 vaules (3);import

insert into ecology.test5 vaules (4);object

insert into ecology.test5 vaules (5);file

commit;

 

3> 建立directory 

create ditectory mydata as '/data1/expdp';

grant read,write on directory mydata to ecology;

 

4> 導出id爲1的數據

[oracle@oracle expdp]$ expdp ecology/ecology directory=mydata dumpfile=test5.dmp tables=test5 query='test5:"where id =1"'

 

Export: Release 11.2.0.1.0 - Production on Mon Nov 11 02:26:08 2019

 

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Starting "ECOLOGY"."SYS_EXPORT_TABLE_01":  ecology/******** directory=mydata dumpfile=test5.dmp tables=test5 query=test5:"where id =1" 

Estimate in progress using BLOCKS method...

Processing object type TABLE_EXPORT/TABLE/TABLE_DATA

Total estimation using BLOCKS method: 64 KB

Processing object type TABLE_EXPORT/TABLE/TABLE

. . exported "ECOLOGY"."TEST5"                           5.023 KB       1 rows

Master table "ECOLOGY"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded

******************************************************************************

Dump file set for ECOLOGY.SYS_EXPORT_TABLE_01 is:

  /data1/expdp/test5.dmp

Job "ECOLOGY"."SYS_EXPORT_TABLE_01" successfully completed at 02:26:19

 

 

impdp

首先導出test5的所有數據(省略)

如下爲導出命令

[oracle@oracle expdp]$ impdp ecology/ecology directory=mydata dumpfile=test5-1.dmp tables=test5 content=data_only query='test5:"where id=1"'

 

Import: Release 11.2.0.1.0 - Production on Mon Nov 11 02:38:29 2019

 

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Master table "ECOLOGY"."SYS_IMPORT_TABLE_01" successfully loaded/unloaded

Starting "ECOLOGY"."SYS_IMPORT_TABLE_01":  ecology/******** directory=mydata dumpfile=test5-1.dmp tables=test5 content=data_only query=test5:"where id=1" 

Processing object type TABLE_EXPORT/TABLE/TABLE_DATA

. . imported "ECOLOGY"."TEST5"                           5.054 KB       1 out of 5 rows

Job "ECOLOGY"."SYS_IMPORT_TABLE_01" successfully completed at 02:38:31

相關文章
相關標籤/搜索