Exp和資料泵(Data Pump)的query引數使用
Oracle提供了邏輯備份和物理備份兩種備份手段。早期的Exp/Imp和10g之後的Data Pump都是實現邏輯備份的重要方式。藉助兩個邏輯備份工具,我們可以方便的對資料庫進行多角度、多維度的備份還原操作。
在資料表資料選擇層面,query引數可以針對匯出的資料表新增where條件。只有滿足query條件的資料記錄才能匯出。這個特性在實際中是非常有用的。比如:我們在進行大規模測試的之前,可能需要先匯出一小部分資料進行試驗。或者恰恰需要匯出滿足條件的記錄資料。
在使用query引數的時候,需要一些注意的問題。本文主要介紹在命令列(command line)和引數檔案(parameter file)中的使用細節。
1、環境介紹
我們選擇使用Oracle 11g進行實驗。
SQL> select * from v$version;
BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition 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 Linux: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 – Production
使用Oracle Data Pump需要建立directory目錄。
SQL> col directory_path for a20;
SQL> select directory_name, directory_path from dba_directories where directory_name='DMPDIR';
DIRECTORY_NAME DIRECTORY_PATH
------------------------------ --------------------
DMPDIR /upload
Query引數的官方說明。
QUERY
Predicate clause used to export a subset of a table.
For example, QUERY=employees:"WHERE department_id > 10".
2、命令列資料匯出
在命令列匯出過程中,三種匯出模式(Schema、Tables和Full)都可以使用query引數。無論匯出的資料表有多少,如果設定query條件,指定query的資料表就需要將滿足條件的資料匯出。
[oracle@bspdev10g upload]$ expdp userid=\"/ as sysdba\" directory=dmpdir dumpfile=scott_inin.dmp logfile=scott_inin.log tables=scott.inin query=scott.inin:\" where rownum\<10 \"
Export: Release 10.2.0.1.0 - Production on Saturday, 15 December, 2012 14:59:08
Copyright (c) 2003, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Starting "SYS"."SYS_EXPORT_TABLE_01": userid="/******** AS SYSDBA" directory=dmpdir dumpfile=scott_inin.dmp logfile=scott_inin.log tables=scott.inin query=scott.inin:" where rownum<10 "
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
Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
. . exported "SCOTT"."ININ" 6.773 KB 9 rows
Master table "SYS"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
******************************************************************************
Dump file set for SYS.SYS_EXPORT_TABLE_01 is:
/upload/scott_inin.dmp
Job "SYS"."SYS_EXPORT_TABLE_01" successfully completed at 14:59:19
在匯出表模式的時候,我們可以將資料表在query中指定出來。如果資料表匯出的只有一個,query中的資料表名稱可以省略。
[oracle@bspdev10g upload]$ expdp userid=\"/ as sysdba\" directory=dmpdir dumpfile=scott_inin.dmp logfile=scott_inin.log tables=scott.inin query=\" where rownum\<10 \"
Export: Release 10.2.0.1.0 - Production on Saturday, 15 December, 2012 15:00:24
Copyright (c) 2003, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Starting "SYS"."SYS_EXPORT_TABLE_01": userid="/******** AS SYSDBA" directory=dmpdir dumpfile=scott_inin.dmp logfile=scott_inin.log tables=scott.inin query=" where rownum<10 "
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
Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
. . exported "SCOTT"."ININ" 6.773 KB 9 rows
Master table "SYS"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
******************************************************************************
Dump file set for SYS.SYS_EXPORT_TABLE_01 is:
/upload/scott_inin.dmp
Job "SYS"."SYS_EXPORT_TABLE_01" successfully completed at 15:00:34
Schema模式匯出物件的時候,query字句也是可以使用的。注意:query沒有指定的資料表也是可以匯出的,而且是無條件的匯出。
[oracle@bspdev10g upload]$ expdp userid=\"/ as sysdba\" directory=dmpdir dumpfile=scott_inin.dmp logfile=scott_inin.log schemas=scott query=scott.emp:\" where rownum\<10 \",scott.dept:\" where rownum\<10 \"
Export: Release 10.2.0.1.0 - Production on Saturday, 15 December, 2012 15:02:01
Copyright (c) 2003, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Starting "SYS"."SYS_EXPORT_SCHEMA_01": userid="/******** AS SYSDBA" directory=dmpdir dumpfile=scott_inin.dmp logfile=scott_inin.log schemas=scott query=scott.emp:" where rownum<10 ",scott.dept:" where rownum<10 "
Estimate in progress using BLOCKS method...
Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 256 KB
Processing object type SCHEMA_EXPORT/USER
Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
Processing object type SCHEMA_EXPORT/ROLE_GRANT
Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
Processing object type SCHEMA_EXPORT/TABLE/TABLE
Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
. . exported "SCOTT"."DEPT" 5.656 KB 4 rows
. . exported "SCOTT"."EMP" 7.625 KB 9 rows
. . exported "SCOTT"."ININ" 34.98 KB 760 rows
. . exported "SCOTT"."SALGRADE" 5.585 KB 5 rows
. . exported "SCOTT"."BONUS" 0 KB 0 rows
Master table "SYS"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded
******************************************************************************
Dump file set for SYS.SYS_EXPORT_SCHEMA_01 is:
/upload/scott_inin.dmp
Job "SYS"."SYS_EXPORT_SCHEMA_01" successfully completed at 15:02:15
注意上面的細節:我們雖然設定的是schema匯出模式,但是在query中設定條件的資料表,的確是按照條件型別進行匯出。
最後,我們需要關注command line匯出方式的一個重要要求,就是跳脫字元。在userid和query引數中,我們都可以看到跳脫字元的蹤跡。在命令列方式下,我們需要對引號、大小比較符進行轉移處理。很多時候,這樣的命令和官方提示中存在一些差異,需要我們額外關注。
3、引數檔案使用
當我們匯出的條件很複雜、引數很多的時候,命令列引數不是什麼很方便的選擇。我們可以使用引數檔案parameter file方法。藉助parfile引數,我們可以將匯出引數組織成一個文字格式檔案。
[oracle@bspdev10g upload]$ ls -l
total 4
-rw-r--r-- 1 oracle oinstall 142 Dec 15 15:08 expdp_q.par
[oracle@bspdev10g upload]$ cat expdp_q.par
directory=dmpdir
dumpfile=exp_scott.dmp
logfile=exp_scott.log
schemas=scott
query=scott.emp:"where rownum<10 ", scott.inin:"where rownum<10"
在目錄中,我們可以定義引數檔案,其中包括了各個引數取值。執行匯出命令:
[oracle@bspdev10g upload]$ expdp userid=\"/ as sysdba\" parfile=expdp_q.par
Export: Release 10.2.0.1.0 - Production on Saturday, 15 December, 2012 15:10:12
Copyright (c) 2003, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Starting "SYS"."SYS_EXPORT_SCHEMA_01": userid="/******** AS SYSDBA" parfile=expdp_q.par
Estimate in progress using BLOCKS method...
Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 256 KB
Processing object type SCHEMA_EXPORT/USER
Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
Processing object type SCHEMA_EXPORT/ROLE_GRANT
Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
Processing object type SCHEMA_EXPORT/TABLE/TABLE
Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
. . exported "SCOTT"."DEPT" 5.656 KB 4 rows
. . exported "SCOTT"."EMP" 7.625 KB 9 rows
. . exported "SCOTT"."ININ" 6.773 KB 9 rows
. . exported "SCOTT"."SALGRADE" 5.585 KB 5 rows
. . exported "SCOTT"."BONUS" 0 KB 0 rows
Master table "SYS"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded
******************************************************************************
Dump file set for SYS.SYS_EXPORT_SCHEMA_01 is:
/upload/exp_scott.dmp
Job "SYS"."SYS_EXPORT_SCHEMA_01" successfully completed at 15:10:25
匯出成功。使用引數檔案的一個重要好處是不需要進行跳脫字元處理,直接使用就可以了。
4、結論
Query引數是exp/imp和Data Pump中很好使用的一個引數型別,本文記錄下這種使用方法,權當記錄。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29618264/viewspace-2084526/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- expdp impdp Data Pump(資料泵)使用解析
- 三個使用資料泵(Data Pump)的小技巧
- 【Data Pump】Data Pump的並行引數原理並行
- 【移動資料】data pump(上) 資料泵概述
- Oracle Data Pump 11G 資料泵元件Oracle元件
- Oracle資料泵(Oracle Data Pump) 19cOracle
- 【Data Pump】理解expdp中的ESTIMATE和ESTIMATE_ONLY引數
- 使用隱含Trace引數診斷Oracle Data Pump故障Oracle
- oracle 資料泵引數Oracle
- 資料泵的TRANSFORM引數說明及使用ORM
- 使用隱含Trace引數診斷Oracle Data Pump(expdp)故障Oracle
- 【EXP】使用EXP的QUERY選項匯出表中部分資料
- data pump (資料抽取)測試
- 資料泵引數檔案用於執行資料泵命令
- 轉:EXP 資料庫資料 QUERY 選項使用問題資料庫
- 使用 Oracle Data Pump 解除安裝和載入資料庫內容Oracle資料庫
- 【匯入匯出】資料泵 job_name引數的使用
- 使用version引數解決Oracle資料泵版本差異Oracle
- 使用data pump前的設定
- 【EXPDP】使用expdp的QUERY引數限定備份資料的範圍
- 《Oracle EXP工具QUERY引數使用方法和限制條件》-使用場景-對比測試-可下載Oracle
- 使用version引數解決Oracle資料泵版本差異(引用)Oracle
- Data Pump 的遠端匯出資料小結
- 【移動資料】data pump(下) IMPDP 應用
- 【移動資料】data pump(中) EXPDP 應用
- 【DG】怎麼使用Data Pump備份物理備用資料庫資料庫
- 關於資料泵impdp引數驗證(一)
- 使用PARTITION_OPTIONS引數控制資料泵分割槽表匯入
- EXPDP 和 IMPDP 資料泵的使用_1
- EXPDP 和 IMPDP 資料泵的使用_2
- 資料泵的使用
- oracle data pumpOracle
- 資料泵引數partition_options 在對於遷移分割槽表的使用。
- Oracle資料泵impdp的table_exists_action引數說明Oracle
- exp和expdp的filesize引數的使用--匯出多個檔案
- oracle 資料泵 content=data_onlyOracle
- Oracle 資料泵的使用Oracle
- data pump總結