資料泵全庫遷移,排除一個大表【kingsql作品】
昨晚同學問我一個他工作中的問題
要匯出整個資料庫,但要排除一張50G的大表
我檢視了資料泵的語法,找到解決辦法,只需要分2步匯出即可
第一步:排除該使用者,匯出全庫;第二步:排除該表,匯出該使用者
以scott.dept為例子,假設它就是那個50G的大表
[oracle@hong ~]$ mkdir -p /home/oracle/dir_test
[oracle@hong ~]$ export ORACLE_SID=hzh
[oracle@hong ~]$ sqlplus / as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on Sat Mar 16 11:02:28 2013
Copyright (c) 1982, 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
>create or replace directory test as '/home/oracle/dir_test';
Directory created.
>grant read,write on directory test to public;
Grant succeeded.
>exit
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
[oracle@hong ~]$ expdp system/oracle directory=test dumpfile=test1.dmp logfile=test1.log full=y exclude=schema:"IN('SCOTT')"
輸出略
[oracle@hong ~]$ expdp scott/oracle directory=test dumpfile=test2.dmp logfile=test2.log exclude=table:"IN('DEPT')"
輸出略
[oracle@hong ~]$ ll dir_test/
total 65100
-rw-r----- 1 oracle oinstall 66347008 Mar 16 11:06 test1.dmp
-rw-r--r-- 1 oracle oinstall 54791 Mar 16 11:06 test1.log
-rw-r----- 1 oracle oinstall 176128 Mar 16 11:08 test2.dmp
-rw-r--r-- 1 oracle oinstall 1530 Mar 16 11:08 test2.log
--kingsql作品
轉載請註明出處
如有問題請發電子郵件至
希望和大家一起交流
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28389881/viewspace-756299/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 資料遷移(1)——通過資料泵表結構批量遷移
- Oracle資料庫(資料泵)遷移方案(上)Oracle資料庫
- Oracle資料庫(資料泵)遷移方案(下)Oracle資料庫
- 資料庫遷移之資料泵實驗資料庫
- 使用資料泵(expdp、impdp)遷移資料庫流程資料庫
- 海量資料處理_資料泵分批資料遷移
- 【實驗】【外部表】以資料泵檔案格式抽取and遷移資料演示
- 透過rman全庫備份遷移資料庫資料庫
- 資料庫物件遷移表空間資料庫物件
- 使用資料泵遷移遇到的問題
- 【遷移】使用rman遷移資料庫資料庫
- 使用impdp,expdp資料泵進入海量資料遷移
- 資料庫遷移資料庫
- EF 中多個資料庫遷移資料庫
- 資料庫遷移的幾個方式資料庫
- Oracle使用資料泵 (expdp/impdp)實施遷移Oracle
- Oracle 19c adg全庫遷移資料Oracle
- 【資料遷移】RMAN遷移資料庫到ASM(一)建立ASM磁碟組資料庫ASM
- 資料泵實現資料遷移到異地庫
- 【資料遷移】使用傳輸表空間遷移資料
- OGG資料庫遷移方案(一)資料庫
- Oracle資料庫遷移之一:RMANOracle資料庫
- 排除表中的行連結和行遷移
- 【imp】使用imp工具遷移資料時迂迴地排除特定表的匯入
- 資料庫遷移 :理解資料庫
- laravel資料庫遷移Laravel資料庫
- Odoo遷移資料庫Odoo資料庫
- redis資料庫遷移Redis資料庫
- Cacti 遷移資料庫資料庫
- 資料庫遷移方案資料庫
- ORACLE資料庫遷移Oracle資料庫
- 遷移資料庫成功!資料庫
- 建立資料庫遷移資料庫
- 【遷移學習】大資料時代下的遷移學習--- 機器學習的下一個前沿遷移學習大資料機器學習
- 資料庫-oracle-資料庫遷移資料庫Oracle
- 資料表內容遷移?
- 資料泵引數partition_options 在對於遷移分割槽表的使用。
- SSIS 開發篇-做一個簡單的SqlServer資料表資料遷移SQLServer