oracle 匯入匯出

2022-02-06 23:17:09 字數 3215 閱讀 2606

基本語法和例項: 

1、exp: 

有三種主要的方式(完全、使用者、表) 

1、完全: 

exp system/manager buffer=64000 file=c:\full.dmp full=y 

如果要執行完全匯出,必須具有特殊的許可權 

2、使用者模式: 

exp sonic/sonic    buffer=64000 file=c:\sonic.dmp owner=sonic 

這樣使用者sonic的所有物件被輸出到檔案中。 

3、表模式:

exp sonic/sonic    buffer=64000 file=c:\sonic.dmp owner=sonic tables=(sonic) 

這樣使用者sonic的表sonic就被匯出 

2、imp: 

具有三種模式(完全、使用者、表) 

1、完全: 

imp system/manager buffer=64000 file=c:\full.dmp full=y 

2、使用者模式: 

imp sonic/sonic    buffer=64000 file=c:\sonic.dmp fromuser=sonic touser=sonic 

這樣使用者sonic的所有物件被匯入到檔案中。必須指定fromuser、touser引數,這樣才能匯入資料。 

3、表模式: 

exp sonic/sonic    buffer=64000 file=c:\sonic.dmp owner=sonic tables=(sonic) 

這樣使用者sonic的表sonic就被匯入。

oracle資料庫有兩類備份方法。第一類為物理備份,該方法實現資料庫的完整恢復,但資料庫必須執行在歸擋模式下(業務資料庫在非歸擋模式下執行),且需要極大的外部儲存裝置,例如磁帶庫;第二類備份方式為邏輯備份,業務資料庫採用此種方式,此方法不需要資料庫執行在歸擋模式下,不但備份簡單,而且可以不需要外部儲存裝置。

資料庫邏輯備份方法

oracle資料庫的邏輯備份分為三種模式:表備份、使用者備份和完全備份。

表模式備份某個使用者模式下指定的物件(表)。業務資料庫通常採用這種備份方式。

若備份到本地檔案,使用如下命令:

exp icdmain/icd rows=y indexes=n compress=n buffer=65536

feedback=100000 volsize=0

file=exp_icdmain_csd_yyyymmdd.dmp

log=exp_icdmain_csd_yyyymmdd.log

tables=icdmain.commoninformation,icdmain.serviceinfo,icdmain.dealinfo

若直接備份到磁帶裝置,使用如下命令:

exp icdmain/icd rows=y indexes=n compress=n buffer=65536

feedback=100000 volsize=0

file=/dev/rmt0

log=exp_icdmain_csd_yyyymmdd.log

tables=icdmain.commoninformation,icdmain.serviceinfo,icdmain.dealinfo

注:在磁碟空間允許的情況下,應先備份到本地伺服器,然後再拷貝到磁帶。出於速度方面的考慮,盡量不要直接備份到磁帶裝置。

使用者模式

備份某個使用者模式下的所有物件。業務資料庫通常採用這種備份方式。

若備份到本地檔案,使用如下命令:

exp icdmain/icd owner=icdmain rows=y indexes=n compress=n buffer=65536

feedback=100000 volsize=0

file=exp_icdmain_yyyymmdd.dmp

log=exp_icdmain_yyyymmdd.log

若直接備份到磁帶裝置,使用如下命令:

exp icdmain/icd owner=icdmain rows=y indexes=n compress=n buffer=65536

feedback=100000 volsize=0

file=/dev/rmt0

log=exp_icdmain_yyyymmdd.log

注:如果磁碟有空間,建議備份到磁碟,然後再拷貝到磁帶。如果資料庫資料量較小,可採用這種辦法備份。

以下為詳細的匯入匯出例項:

一、資料匯出:

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  就可以了

二、資料的匯入

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能否連上。

oracle匯出,匯入

匯出,在dos下執行 1.exp username userpassword databasename 可以是資料庫也可是遠端的,如username userpassword caac135 2.enter array fetch buffer size 4096 回車 3.export file ...

oracle匯入匯出

sqlplus system system egov create directory dump dir as d dbback exit expdp system system egov directory dump dir dumpfile urbanyw.dmp schemas urbanyw...

Oracle匯入匯出

最簡單 exp duser duser remote localinstancename owner duser file file path dmp imp duser duser remote localinstancename file file path dmp 詳細出處參考 win10下o...