oracle11g資料庫還原步驟

2021-05-22 06:19:53 字數 1743 閱讀 8985

1樓:匿名使用者

你有test.dmp了,很簡單的

首先在目標機器上安裝資料庫

然後在目標資料庫上執行匯入命令

例如 目標資料庫的使用的使用者名稱是lxy,密碼dbasec,匯入的檔案是d:\test.dmp 將原庫的olduser的表匯入到新庫的newuser名下,原庫的表空間是abc,新庫的表空間是def

remap_schema和remap_tablespace 是可選的impdp lxy/dbasec dumpfile=d:\test.dmp remap_schema = olduser:

newuser remap_tablespace= abc:def,

2樓:匿名使用者

oracle資料庫不存在還原一說,只有匯入,應該用imp命令。

根據具體的匯入方式不同,基本有以下幾種情況:

1. 獲取幫助

imp help=y

2. 匯入一個完整資料庫

imp system/manager file=bible_db log=dible_db full=y ignore=y

3. 匯入一個或一組指定使用者所屬的全部表、索引和其他物件

imp system/manager file=seapark log=seapark fromuser=seapark

imp system/manager file=seapark log=seapark fromuser=(seapark,amy,amyc,harold)

4. 將一個使用者所屬的資料匯入另一個使用者

imp system/manager file=tank log=tank fromuser=seapark touser=seapark_copy

imp system/manager file=tank log=tank fromuser=(seapark,amy)

touser=(seapark1, amy1)

5. 匯入一個表

imp system/manager file=tank log=tank fromuser=seapark tables=(a,b)

6. 從多個檔案匯入

imp system/manager file=(paycheck_1,paycheck_2,paycheck_3,paycheck_4)

log=paycheck, filesize=1g full=y

7. 使用引數檔案

imp system/manager parfile=bible_tables.par

bible_tables.par引數檔案:

#import the sample tables used for the oracle8i database administrator's

bible. fromuser=seapark touser=seapark_copy file=seapark log=seapark_import

8. 增量匯入

imp system./manager inctype= rectore full=y file=a

3樓:匿名使用者

你是邏輯備份用的exp備份出來的是嗎?

直接imp就行

具體給你個例子:imp user/passwd file=/備份檔案路徑/test.dmp full=y ***mit=y

其中full就是把dmp檔案中的資料都匯入到目標庫中,也可以換成指定從哪個使用者匯入到哪個使用者,fromuser=... touser=...

怎樣用命令備份還原oracle資料庫

oracle中沒有備份和還原的概念,應該叫匯出和匯入。一 匯出 1.獲取幫助 exp help y 2.匯出一個完整資料庫 exp system manager file bible db log dible db full y 3.匯出資料庫定義而不匯出資料 exp system manager ...

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

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

oracle資料庫問題,關於oracle資料庫匯出問題,錯誤如下

1 select ename,decode sign sal 1000 1,0,decode sign sal 2000 1,sal 0.1,decode sign sal 3000 1,sal 0.15,sal 0.2 sal from emp 2 select ename,case when s...