將表匯入到其他使用者的impdp命令
今天需要另一個資料庫的使用者表匯入到當前庫中,但使用者名稱不相同,以前exp/imp時,可以指定fromuser和touser來解決,在expdp中也提供了類似的解決方法
[@more@]impdp system/zlsoft dumpfile=expdp:EXPDP_ZLHIS.DMP nologfile=y tables=zlhis.dept remap_schema=zlhis:scott remap_tablespace=ZL9BASEITEM:users,zl9indexhis
:users,zl9indexmtl:users table_exists_action=truncate exclude=object_grant
幾個重要引數的說明一下:
1、remap_user 重新對映使用者,格式:
source_user1:target_user1,source_user2:target_user2
2、remap_tablespace 重新對映表空間
3、 table_exists_action 表已經存在的動作 有效關鍵字: (SKIP), APPEND, REPLACE 和 TRUNCATE。
4、exclude=object_grant 跳過物件授權
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7839206/viewspace-1008693/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【匯入匯出】將資料匯入到其他使用者
- oracle expdp、impdp匯入從原表空間更換到其他表空間 ----匯入到另個表空間測試Oracle
- 【impdp】使用impdp工具排除特定表的匯入
- 實驗之將老庫上非系統使用者下的物件的表匯入到新庫上(expdp/impdp)物件
- IMPDP 多個表空間物件匯入到一個表空間中物件
- expdp impdp 資料庫匯入匯出命令詳解資料庫
- Oracle建立使用者、表空間、匯入匯出、...命令Oracle
- 【IMPDP】使用IMPDP自動建立使用者並完成資料的匯入
- Oracle 12c expdp和impdp匯出匯入表Oracle
- Oracle expdp/impdp匯出匯入命令及資料庫備份Oracle資料庫
- impdp 匯入 指令碼指令碼
- 【EXPDP/IMPDP】使用 EXPDP/IMPDP工具“模糊”匯出和匯入
- impdp匯入資料後,system 表空間整理
- 將oracle11g的表匯出並匯入到10g中Oracle
- js將表格匯入到Execel表例項程式碼JS
- oracle匯入匯出之expdp/impdpOracle
- expdp impdp只匯出匯入viewView
- excel 表匯入到mysqlExcelMySql
- 用命令將本地jar包匯入到本地maven倉庫JARMaven
- truncate表後impdp匯入該表時加exclude=index引數並不能排除索引資料的匯入Index索引
- Impdp資料泵匯入
- oracle impdp 匯入大表報告顯示 out of rowsOracle
- expdp與impdp全庫匯出匯入
- 使用EXPDP/IMPDP匯入匯出表中資料/後設資料測試
- oracle 10.2.0.4 expdp全庫匯出 和分使用者impdp匯入的記錄Oracle
- Oracle建立刪除使用者、角色、表空間、匯入匯出...命令總結Oracle
- Oracle 低版本匯入高版本按使用者expdp/impdpOracle
- 資料泵IMPDP 匯入工具的使用
- Oracle資料泵匯出匯入(expdp/impdp)Oracle
- expdp與impdp全庫匯出匯入(二)
- EXP COMPRESS以及EXP/IMP EXPDP/IMPDP匯入表結構注意
- impdp 匯入 schema的資料時會自動建立對應的使用者
- IMPDP匯入遠端資料庫資料庫
- 資料庫泵(expdp/impdp)匯入匯出流程資料庫
- SNP Glue:SAP資料匯入到其他系統的多種方式
- impdp匯入包含xmltype型別欄位空表報錯問題XML型別
- expdp/impdp中匯出/匯入任務的管理和監控
- 【匯出匯入】IMPDP table_exists_action 引數的應用