Oracle資料庫如何匯出

2021-03-06 11:29:27 字數 1219 閱讀 6883

1樓:chris提拉

資料匯出具體如下:

將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d:\daochu.dmp中。

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

將資料庫中的表table1 、table2匯出。

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

將d:\daochu.dmp 中的資料匯入 test資料庫中。

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

2樓:百度使用者

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檔案可以很好的壓縮。

不過在上面命令後面 加上 ***press=y 就可以了

3樓:百度使用者

還有資料的匯入先要知道麼。

資料的匯入

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資料庫中高速匯出 匯入

oracle匯出 匯入資料 1 匯出 只匯出3張表的結構 連帶資料匯出 2 導人 或者。1 在執行imp導人操作時,可能會報出建立觸發器錯誤,原因許可權不足。此時需要登入sysdba,進行授權操作。2 當匯出的表上建立了物化檢視時,匯出時不會報錯,但在匯入時,就可能會報錯 這種錯誤情況,暫定為是or...

ORACLE資料庫如何完整解除安裝

解除安裝步驟 1 停用oracle服務 進入計算機管理,在服務中,找到oracle開頭的所有服務,右擊選擇停止。2 在開始選單中,找到universal installer,執行oracle universal installer,單擊解除安裝產品。3 在產品清單視窗中,單擊全部,除了oradb11...

sql資料庫和oracle資料庫string型別欄位用orderby排序分別是根據什麼排序的啊

首先說明下oracle中沒有string型別,而是varchar型別。order by 的順序是assic 讀作 阿斯科馬 碼錶中 字元 列進行排序的。解釋 一般會根據字串的首字母 大些字母 小寫字母 特殊字元 數字。如果首位相同繼續排列第二位,直到不同的位。sql資料和oracle資料庫都沒有st...