資料匯入匯出EXP/IMP

lff1530983327發表於2016-08-23
 

1 將資料庫TEST完全匯出,使用者名稱system 密碼manager 匯出到D:\daochu.dmp

   exp system/manager@TEST file=d:\daochu.dmp full=y

 2 將資料庫中system使用者與sys使用者的表匯出

   exp system/manager@TEST file=d:\daochu.dmp owner=(system,sys)

 3 將資料庫中的表table1 table2匯出

   exp system/manager@TEST file=d:\daochu.dmp tables=(table1,table2)

 4 將資料庫中的表table1中的欄位filed1"00"打頭的資料匯出

   exp system/manager@TEST file=d:\daochu.dmp tables=(table1) query=\" where filed1 like  '00%'\"

 

資料的匯入

 

 11 d:\daochu.dmp中的表table1 匯入

 imp system/manager@TEST  file=d:\daochu.dmp  tables=(table1)

 

資料匯出:

exp hkb/hkb@boss_14 full=y file=c:\orabackup\hkbfull.dmp log=c:\orabackup\hkbfull.log;

匯出注意事項:匯出的是當前使用者的的資料,當前使用者如果有DBA的許可權,則匯出所有資料!

同名使用者之間的資料匯入:

imp hkb/hkb@xe  file=c:\orabackup\hkbfull.dmp log=c:\orabackup\hkbimp.log full=y

不同名之間的資料匯入:

imp system/test@xe fromuser=hkb touser=hkb_new file=c:\orabackup\hkbfull.dmp log=c:\orabackup\hkbimp.log;

---匯入匯出

EXP SCOTT/TIGER@ORG11G_1 FILE=D:\DAOCHU.DMP

IMP perfstat/perfstat@ORG11G_1 FROMUSER=SCOTT TOUSER=PERFSTAT FILE=D:\DAOCHU.DMP rows=n

帶引數:rows=y   —— 帶資料匯出匯入;rows=n    —— 不帶資料的匯出匯入,只移植結構。

triggers=y tables statistics indexes grant constraints等等--匯出時才使用的上

因為有的表已經存在,然後它就報錯,對該表就不進行匯入。在後面加上 ignore=y 就可以了

匯出時加上compress=y就可以對錶進行壓縮。
 ---- 只匯出表中某一個分割槽的資料
EXP scott/tiger@ORG11G_1 FILE=D:\DAOCHU_P.DMP TABLES=DEPT:PART_1

IMP perfstat/perfstat@ORG11G_1 FROMUSER=SCOTT TOUSER=PERFSTAT FILE=D:\DAOCHU_P.DMP IGNORE=Y

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

相關文章