oracle 匯入匯出表資料

2021-07-25 02:32:53 字數 1043 閱讀 9658

感謝博主分享

system/manager@test

system:使用者名稱;

manager:密碼

test:資料庫位址

file:要將檔案匯出的位置

tables:要匯出的表名

owner: 匯出表的所屬使用者

一、資料匯出:

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%'\"

在上面命令後面 加上 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)

基本上上面的匯入匯出夠用了。不少情況我是將表徹底刪除,然後匯入。

注意:你要有足夠的許可權,許可權不夠它會提示你。

ORACLE匯出表匯入表資料語法

exp imp工具 帶引數 rows y 帶資料匯出匯入 rows n 不帶資料的匯出匯入,只移植結構。例如 只匯出3張表的結構 exp user pasword dbservername owner user tables table1,table2,table3 rows n file c 1....

oracle匯出匯入備份表資料

今天遇到了乙個很常見的需求,備份資料庫資料。輕車熟路,用pl sql developer的tools export tables,選好oracle匯出程式的路徑和檔案匯出的路徑,點下右下角export即可。不過試了好幾次,下面的提示欄都已經顯示完成了,不過桌面上還是沒有dmp檔案。我首先是懷疑是pl...

Oracle 匯入匯出表

下面介紹的是匯入匯出的例項,向匯入匯出看例項基本上就可以完成,因為匯入匯出很簡單。資料匯出 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d daochu.dmp中 exp system manager orcl 127.0.0.1 file d daochu.dm...