如何實現oracle11g和oracle10g的資料互相匯入匯出

2022-02-15 17:30:22 字數 1710 閱讀 6191

1樓:匿名使用者

方法/步驟

開啟開始選單中的執行

開啟以後,在執行框中輸入cmd,點選確定

執行以下命令:

sqlplus system/密碼

2 建立資料匯出目錄expnc_dir為目錄名,'e:\ncdatabak'為資料庫實際目錄,命令如下:

create directory expnc_dir as 'e:\ncdatabak';

為oracle使用者授予訪問資料目錄的許可權,命令如下:

grant read,write on directory expnc_dir to dxzyjt;

執行資料泵出命令,注意一定要在cmd下執行,不能登入sqlplus後執行。

expdp dxzyjt/dxzyjt@ncdata_192.168.1.

224 directory=expnc_dir dumpfile=ncdatabak.dmp schemas=dxzyjt  logfile=ncdatabak.log;

備份介面如下:

以上是匯出的步驟,匯入與匯出的步驟基本一樣,有不清楚的可以聯絡我。

2樓:time陌言成殤

您好,很高興為您解答。

oracle10g 資料匯入到oracle11g 中:

在oracle10g 上執行:exp ts/ts@orcl file=d:\tianshan.dmp

在oracle11g 上建立好表空間和使用者後執行:imp ts/ts@orcl file=d:\tianshan.dmp

oracle11g 資料匯入到oracle10g 中:

1.在oracle11g 伺服器命令列中用expdp 匯出資料

expdp ts/ts@orcl directory=expdp_dir dumpfile=tianshan.dmp logfile=tianshan.log version=10.

2.0.1.

0 (schemas=ccense)

2.在oracle10g 伺服器dos 命令列中用impdp 匯入資料:

把oracle11g 的備份檔案放到oracl10g 伺服器的impdp_dir 目錄中,並建立好相應的使用者和表空間,然後執行下面的命令:

impdp ts/ts@orcl directory=impdp_dir dumpfile=tianshan.dmp logfile=tianshan.log version=10.

2.0.1.

0 (schemas=ccense)

oracle 的imp/exp 元件的一個操作原則就是向下相容,且有一些規則:

1、低版本的exp/imp 可以連線到高版本(或同版本)的資料庫伺服器,但高版本的exp/imp 不能連線到低版本的資料庫伺服器。

2、高版本exp 出的dmp 檔案,低版本無法imp(無法識別dmp 檔案);低版本exp 出的dmp 檔案,高版本可以imp(向下相容)。

3、從oracle 低版本export 的資料可以import 到oracle 高版本中,但限於oracle 的相鄰版本,如從oracle 7 到 oracle 8。對於兩個不相鄰版本間進行轉換,如從oracle 6 到 oracle 8,則應先將資料輸入到中間版本—oracle 7,再從中間資料庫轉入更高版本oracle 8。

如若滿意,請點選右側【採納答案】,如若還有問題,請點選【追問】

希望我的回答對您有所幫助,望採納!

~ o(∩_∩)o~

centos 6 0下安裝oracle 10g出現的問題

缺少一個軟體包。glibc 你可以在光碟上找到檔案以glibc開頭的這個包使用如下命令安裝 rpm ivh glibc rpm安裝後在 lib下就會有ld linux.so.2這個檔案了。安裝報錯 runinstaller home oracle db database install oui li...

Oracle11g資料泵匯入資料庫dmp檔案時,表空間和用

imp lushuifa 123 orcl buffer 50000000 full n file f scott table.dmp ignore y rows y commit y compile n fromuser scott touser lushuifa 加上touser就可以了,這個好...

win7怎麼解除安裝oracle 11g 32位

如何徹底解除安裝oracle11g 步驟有六,如下 1.刪除乾淨登錄檔中的oracle服務檔案。2.刪除乾淨登錄檔中的oracle安裝檔案。3.刪除乾淨登錄檔中的oracle日誌檔案。4.刪卜培除環境變數配置中有關oracle的配置。5.刪除本地oracle的所有安裝檔案 由於oracle檔案占記憶體3g...