exp/imp(導出/導入)

exp ccntbpm_kj/yiyangJtwz0726@CCNT62 file=d:\db_62_bak\ccntbpm_kj_62_20131114.dmp log=d:\db_62_bak\ccntbpm_kj_62_20131114.log

數據庫


imp userid=用戶/密碼 file=d:\db_62_bak\ccntbpm_kj_62_20131114.dmp commit=y full=y ignore=y spa


若是不知道是採用什麼用戶導出的,那麼使用full=y,若是知道是什麼用戶導出的,就能夠使用fromuser和 touser 指定orm


(網上搜羅)ip

下面介紹的是導入導出的實例,嚮導入導出看實例基本上就能夠完成,由於導入導出很簡單。
數據導出:
 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%'\"
  
     上面是經常使用的導出,對於壓縮我不太在乎,用winzip把dmp文件能夠很好的壓縮。
                     不過在上面命令後面 加上 compress=y  就能夠了it

數據的導入
 1 將D:\daochu.dmp 中的數據導入 TEST數據庫中。
   imp system/manager@TEST  file=d:\daochu.dmp
   上面可能有點問題,由於有的表已經存在,而後它就報錯,對該表就不進行導入。
   在後面加上 ignore=y 就能夠了。
 2 將d:\daochu.dmp中的表table1 導入
 imp system/manager@TEST  file=d:\daochu.dmp  tables=(table1) 
 
 基本上上面的導入導出夠用了。很多狀況我是將表完全刪除,而後導入。
 
注意:
 你要有足夠的權限,權限不夠它會提示你。
 數據庫時能夠連上的。能夠用tnsping TEST 來得到數據庫TEST可否連上。table

 

數據導出:
exp hkb/hkb@boss_14 full=y file=c:\orabackup\hkbfull.dmp log=c:\orabackup\hkbfull.log;test

導出注意事項:導出的是當前用戶的的數據,當前用戶若是有DBA的權限,則導出全部數據!file

同名用戶之間的數據導入:
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;

相關文章
相關標籤/搜索