匯入資料庫dmp檔案到本地

2021-10-06 11:35:11 字數 522 閱讀 1083

第一步:在測試環境的資料庫上匯出dmp檔案。

匯出指令碼如下:

exp  sit/sit_was@192

.168

.#.###:

1521

/#### file=d:\was.dmp

匯出成功之後d盤下會出現這個檔案

第二步:本地建立資料庫(前提是本地已經安裝好資料庫了,而不是只有連線資料庫的客戶端)。

登入資料庫 建立乙個使用者名稱was ,密碼was 的庫:

create user was identified by was;

grant dba to was;

第三步:匯入was.dmp檔案到本地was資料庫。

執行cmd,在黑視窗裡執行如下命令:

imp was/was@orcl file=d:\was.dmp full=y ignore=y
執行時間時間會很長,執行完就ok了。

dmp檔案匯入oracle資料庫

create tablespace test 表空間的名字 datafile d oracle product 10.2.0 userdata test.dbf 這邊可以寫成oracle的某個路徑下 size 50m 初始大小 autoextend on 自動擴充套件 建立乙個自己的使用者,建立格式...

匯出匯入資料庫 dmp檔案

將oracle數 據庫匯出到本地磁碟中 具體實現 匯出 exp 使用者名稱 密碼 資料庫 owner 使用者名稱 file d dmp buffer 9000000 compress y log d log 舉例 exp scott orac orcl owner scott file d orcl...

Oracle資料庫匯入 dmp檔案

1.安裝好oracle資料庫 2.安裝plsql developer資料庫開發工具 3.開啟sqlplus,命令列建立使用者 可在cmd命令列鍵入sqlplus直接進入,如果顯示不是內部或者外部命令則是環境變數的問題 4.開啟cmd命令列,匯入資料庫檔案 imp username password ...