oracle按照表條件expdp匯出資料
編寫匯出指令碼
1. 編寫引數檔案
如要匯出的表的查詢條件如下:
select * from mf_acct_dtl where acct_date>'2018-12-31' and acct_date<'2020-01-01'
select * from mf_sub_gen_led where acct_date>'2018-12-31' and acct_date<'2020-01-01'
select * from hs_acct_dtl where acct_date>'2018-12-31' and acct_date<'2020-01-01'
select * from hs_sub_gen_led where acct_date>'2018-12-31' and acct_date<'2020-01-01'
select * from fin_acct_dtl where acct_date>'2018-12-31' and acct_date<'2020-01-01'
select * from fin_sub_gen_led where acct_date>'2018-12-31' and acct_date<'2020-01-01'
引數檔案 exp.par 內容如下:
DUMPFILE=20200226.dmp
DIRECTORY=DATA_PUMP_DIR
JOB_NAME=JOB02
TABLES=
(
MF_ACCT_DTL,
MF_SUB_GEN_LED,
HS_ACCT_DTL,
HS_SUB_GEN_LED,
FIN_ACCT_DTL,
FIN_SUB_GEN_LED
)
QUERY=
(
MF_ACCT_DTL:"where acct_date>'2018-12-31' and acct_date<'2020-01-01'",
MF_SUB_GEN_LED:"where acct_date>'2018-12-31' and acct_date<'2020-01-01'",
HS_ACCT_DTL:"where acct_date>'2018-12-31' and acct_date<'2020-01-01'",
HS_SUB_GEN_LED:"where acct_date>'2018-12-31' and acct_date<'2020-01-01'",
FIN_ACCT_DTL:"where acct_date>'2018-12-31' and acct_date<'2020-01-01'",
FIN_SUB_GEN_LED:"where acct_date>'2018-12-31' and acct_date<'2020-01-01'"
)
2. 編寫匯出命令
expdp "'" / as sysdba"'" parfile=exp.par
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69993859/viewspace-2753726/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle資料泵匯出匯入(expdp/impdp)Oracle
- Oracle expdp資料泵遠端匯出Oracle
- Oracle使用資料泵expdp,impdp進行資料匯出匯入Oracle
- oracle10g expdp資料泵的bug,按schema匯出,匯入impdp時無jobOracle
- Oracle 11g 透過expdp按日期匯出表Oracle
- expdp遠端匯出資料
- 資料泵過濾匯出資料的where條件
- Oracle expdp/impdp匯出匯入命令及資料庫備份Oracle資料庫
- Oracle expdp/impdp匯入匯出備份資料庫指令碼Oracle資料庫指令碼
- Oracle expdp匯出多表或表中的部分資料Oracle
- expdp匯出表的部分資料
- expdp 使用QUERY 匯出部分資料。
- oracle匯入匯出之expdp/impdpOracle
- 資料庫泵(expdp/impdp)匯入匯出流程資料庫
- 使用資料泵工具expdp工具匯出資料
- expdp impdp 資料庫匯入匯出命令詳解資料庫
- Oracle10g 資料泵匯出命令 expdp 使用總結Oracle
- expdp中使用include或者exclude匯出資料
- 在鎖表情況下expdp匯出資料
- Oracle 資料匯入匯出Oracle
- Oracle資料匯入匯出Oracle
- 關於使用exp按照條件匯出資料的問題(摘)
- exp匯出一個表中符合查詢條件的資料
- 通過EXPDP/IMPDP匯出匯入遠端資料倒本地
- 使用EXPDP/IMPDP匯入匯出表中資料/後設資料測試
- Oracle 12c expdp和impdp匯出匯入表Oracle
- ORACLE expdp匯出遠端庫指定使用者資料到本地資料庫Oracle資料庫
- 【資料泵】EXPDP匯出表結構(真實案例)
- expdp 匯出指令碼指令碼
- [oracle] expdp 匯出分割槽表的分割槽Oracle
- 記一次 oracle expdp 匯出錯誤Oracle
- 【EXPDP/IMPDP】使用 EXPDP/IMPDP工具“模糊”匯出和匯入
- ORACLE 11.2.0.4版本EXPDP不會匯出回收站中資料Oracle
- [重慶思莊每日技術分享]-expdp按日期匯出表
- oracle資料匯出匯入(exp/imp)Oracle
- Oracle資料泵-schema匯入匯出Oracle
- oracle資料庫匯入匯出命令!Oracle資料庫
- Oracle資料匯入匯出詳解Oracle