expdp匯出表的部分資料

xfhuangfu發表於2015-07-04
針對 expdp 匯出表的部分資料,測試如下
 
 
在 /home/oracle 目錄下新建一個 expdp.par 檔案,檔案內容如下:
 
directory=expdir
dumpfile=scott_part.dmp
logfile=part_scott.log
tables=tt
query=tt:"where object_id<=20"
 
 
 
然後執行下述命令,匯出tt表的部分資料
 
[oracle@VM-10 ~]$ expdp scott/tiger parfile=/home/oracle/expdp.par
Export: Release 10.2.0.4.0 - 64bit Production on Wednesday, 09 October, 2013 14:54:05
Copyright (c) 2003, 2007, Oracle.  All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Starting "SCOTT"."SYS_EXPORT_TABLE_01":  scott/******** parfile=/home/oracle/expdp.par 
Estimate in progress using BLOCKS method...
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 45 MB
Processing object type TABLE_EXPORT/TABLE/TABLE
. . exported "SCOTT"."TT"                                19.96 KB     152 rows
Master table "SCOTT"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
******************************************************************************
Dump file set for SCOTT.SYS_EXPORT_TABLE_01 is:
  /oradata/expdir/scott_part.dmp
Job "SCOTT"."SYS_EXPORT_TABLE_01" successfully completed at 14:54:09
 
 
結果顯示有 152 rows匯出,可以從資料庫中驗證該結果
 
 
SQL> select count(*) from tt where  object_id<=20;
  COUNT(*)
----------
       152
 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28373936/viewspace-1722294/,如需轉載,請註明出處,否則將追究法律責任。

相關文章