您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“怎么使用Oracle進行數據庫備份與還原”,內容詳細,步驟清晰,細節處理妥當,希望這篇“怎么使用Oracle進行數據庫備份與還原”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
Oracle中的備份與恢復區分為:邏輯備份和物理備份。其中物理備份區分為兩類:冷備份和熱備份
邏輯備份指利用exp命令進行備份,其簡單易行,不會影響正常的數據庫操作。可以使用exp -?查看其參數選項,以實現不同的導出策略
其中常用參數包括:full=y、owner=()、tables=()
①不使用任何參數:DBA用戶、非DBA用戶都可備份自身全部對象,對應情況3
②full=y參數:僅DBA用戶使用,備份全庫(可通過日志查看其備份內容),對應情況1。非DBA用戶使用會報錯
③owner參數:DBA用戶使用可備份自身及其他多個用戶下全部對象,對應情況2。非DBA用戶使用,參數內容僅能為自身用以備份自身對象,對應情況3,若參數內容有其他用戶會報錯
④tables參數:DBA用戶使用可備份自身及其他用戶下多張表,對應情況4、5。非DBA用戶使用參數內容僅可為自身所有表,對應情況4,若參數內容有其他用戶所有表將報錯
當命令未指定登錄到哪個數據庫實例,將使用系統環境變量ORACLE_SID所指定的數據庫實例(系統默認數據庫實例,一般為最后安裝的數據庫實例)
此命令將默認數據庫orcl全庫導出(需要正確的system用戶密碼)
exp system/orcl file=d:\defaulsid_full.dmp full=y # 如需同步導出日志表:exp system/orcl file=d:\defaultsid_full.dmp log=d:\defaultsid_full.log full=y
此命令將orcl數據庫全庫導出(需要正確的system用戶密碼)
exp system/orcl@orcl file=d:\orcl_full.dmp full=y
非DBA用戶使用full=y參數會報錯:
exp scott/scott@orcl file=d:\1.dmp full=y # EXP-00023:必須是DBA才能執行完整數據庫或表空間導出操作
exp system/orcl@orcl file=d:\test_scott.dmp owner=(test, scott)
exp scott/scott@orcl file=d:\1.dmp owner=(test, scott) # EXP-00032:非DBA不能導出其他用戶
exp system/orcl@orcl file=d:\scott.dmp owner=scott # 成功將scott用戶下全部對象導出為scott.dmp
exp scott/scott@orcl file=d:\scott.dmp # 同exp scott/scott@orcl file=d:\scott.dmp owner=scott exp system/orcl@orcl file=d:\system.dmp # 同exp system/orcl@orcl file=d:\system.dmp owner=system
exp scott/scott@orcl file=d:\scott_tables.dmp tables=(emp, dept) exp scott/scott@orcl file=d:\scott_dept.dmp tables=dept
exp system/orcl@orcl file=d:\scott_bonus_salgrade.dmp tables=(scott.bonus, scott.salgrade) exp system/orcl@orcl file=d:\scott_dept.dmp tables=scott.dept
exp system/orcl@orcl file=d:\1.dmp owner=scott tables=(bonus, salgrade) # EXP-00026:指定了沖突模式
備份總結:
①不使用任何參數將備份用戶自身全部對象
②DBA用戶方有權限進行全庫備份、其他用戶備份、其他用戶對象備份
③DBA用戶使用full=y參數會進行全庫備份,非DBA用戶使用full=y會報錯
④DBA用戶使用owner=()參數會備份()中的用戶下全部對象(多個或單個)。非DBA用戶不能備份其他用戶,使用owner參數(參數內容為自身)或不使用任何參數可以備份自身
⑤DBA用戶使用tables=()參數可以備份自身表對象或其他用戶表對象,非DBA用戶只能備份自身表對象,tables參數不可以與owner參數同時使用
常用參數:FULL=Y、FROMUSER=()、TOUSER=()、TABLES=()
imp system/orcl@orcl file=d:\orcl_full.dmp # IMP-00031:必須指定FULL=y或提供FROMUSER/TOUSER或TABLES參數 imp system/orcl@orcl file=d:\orcl_full.dmp FULL=Y # FULL=Y語句相當于將orcl_full.dmp中所有對象還原于相應的orcl庫中的對象 # 執行后警告很多,多數語句執行失敗,成功將刪掉的test、scott用戶還原并且還原了其中的表、函數等對象
首先刪除用戶test與scott,隨后使用命令還原
imp system/orcl@orcl file=d:\orcl_full.dmp FROMUSER=scott, test # IMP-00003:遇到oracle錯誤1435 ORA-01435:用戶不存在 imp system/orcl@orcl file=d:\orcl_full.dmp FROMUSER=scott, test touser=scott, test # IMP-00003:遇到oracle錯誤1435 ORA-01435:用戶不存在
觀察到全庫備份文件還原庫內某些用戶時,被還原用戶必須存在。直接還原庫:
imp system/orcl@orcl file=d:\orcl_full.dmp FULL=Y
將test用戶的函數對象,scott用戶的表對象刪除,隨后使用命令還原:
imp system/orcl@orcl file=d:\orcl_full.dmp FROMUSER=scott, test # 觀察到scott用戶的表對象,test的函數對象被成功還原 imp system/orcl@orcl file=d:\orcl_full.dmp FROMUSER=scott, test TOUSER=scott, test # 觀察到scott用戶的表對象,test的函數對象被成功還原 imp system/orcl@orcl file=d:\orcl_full.dmp FROMUSER=scott TOUSER=test # 觀察到orcl_full.dmp文件中的scott用戶對象被還原到已有用戶test下
首先刪除scott用戶下dept、emp表,隨后使用命令還原:
imp system/orcl@orcl file=d:\orcl_full.dmp FROMUSER=scott TOUSER=scott TABLES=(dept, emp) # 可以觀察到soctt用戶被刪除的兩張表被成功還原 imp scott/scott@orcl file=d:\orcl_full.dmp FROMUSER=scott TOUSER=scott TABLES=(dept, emp) # IMP-00013:只有DBA才能導入由其他DBA導出的文件 imp system/orcl@orcl file=d:\orcl_full.dmp FROMUSER=scott TOUSER=test TABLES=(dept, emp) # 可以觀察到orcl_full.dmp文件中的scott用戶的dept與emp成功被還原到已有用戶test下
使用全庫備份文件還原總結:
①還原命令必須有FULL=Y、FROMUSER=()、TOUSER=()、TABLES=()等參數
②DBA用戶使用full=y參數會全庫還原(備份文件包含用戶的定義,所以可以還原被刪掉的用戶)
③DBA用戶僅使用FROMUSER參數時,會將FROMUSER參數內的用戶的對象對應還原(被還原用戶應存在)
④DBA用戶使用FROMUSER與TOUSER參數時,會將FROMUSER參數內的用戶的對象還原到TOUSER參數內的用戶
⑤DBA用戶使用FROMUSER與TOUSER與TABLES參數時,會將FROMUSER參數內的用戶內的TABLES參數內的表還原給TOUSER用戶
imp system/orcl@orcl file=d:\system_scott.dmp full=y # 部分語句執行失敗,原因XX已存在,scott被刪除的四張表被成功還原 imp scott/scott@orcl file=d:\system_scott.dmp full=y # IMP-00013:只有DBA才能導入由其他DBA導出的文件 imp scott/scott@orcl file=d:\system_scott.dmp fromuser=scott # IMP-00013:只有DBA才能導入由其他DBA導出的文件 imp system/orcl@orcl file=d:\system_scott.dmp fromuser=scott # 成功將scott用戶被刪除的四張表還原 imp system/orcl@orcl file=d:\system_scott.dmp fromuser=scott touser=test # 成功將system_scott.dmp文件中scott用戶對象還原到已有用戶test中
imp system/orcl@orcl file=d:\system_scott.dmp fromuser=scott touser=test tables=(dept, emp) # 成功將system_scott.dmp文件中scott用戶的dept、emp表還原到已有用戶test中
使用某些用戶備份文件還原總結:
①DBA用戶使用full=y參數會對應還原某些用戶備份文件中的所有用戶的對象
②DBA用戶僅使用FROMUSER參數,會將某些用戶備份文件中的FROMUSER參數內用戶還原到已有的相應用戶
③DBA用戶使用FROMUSER參數與TOUSER參數,會將某些用戶備份文件中的FROMUSER參數內用戶的對象還原到TOUSER參數內用戶
④DBA用戶使用FROMUSER與TOUSER與TABLES參數時,會將某些用戶備份文件中的 FROMUSER參數內用戶內的 TABLES參數內的 表還原給TOUSER用戶
imp scott/scott@orcl file=d:\scott.dmp full=y # 成功將scott被刪除的四張表還原 imp system/orcl@orcl file=d:\scott.dmp full=y # 觀察到將scott.dmp文件中的對象還原到system用戶中 imp system/orcl@orcl file=d:\scott.dmp fromuser=scott # 觀察到將scott.dmp文件中的對象還原到system用戶中 imp system/orcl@orcl file=d:\scott.dmp touser=scott # IMP-00031:必須指定FULL=Y或提供FROMUSER/TOUSER或TABLES參數 imp system/orcl@orcl file=d:\scott.dmp fromuser=scott touser=scott # 成功將scott被刪除的四張表還原
imp scott/scott@orcl file=d:\scott.dmp tables=(dept, emp) # 成功將scott被刪除的兩張表還原 imp scott/scott@orcl file=d:\scott.dmp touser=test tables=(dept, emp) # IMP-00007:必須是DBA才能將對象導入另一用戶 imp system/orcl@orcl file=d:\scott.dmp touser=test tables=(dept, emp) # 成功將scott.dmp文件中的表dept與emp導入test
使用某一用戶備份文件還原總結:
①非DBA用戶使用非DBA用戶導出備份文件,使用FULL=Y參數會將某一用戶備份文件內對象還原到自身
②DBA用戶使用FULL=Y參數,會將某一用戶備份文件內對象還原到自身
③DBA用戶僅使用FROMUSER參數,會將某一用戶備份文件內對象還原到自身(FROMUSER參數要與導出用戶匹配)
(此處與使用某些用戶備份文件還原有區別,即與上述總結第2點有區別)
④DBA用戶使用FROMUSER參數與TOUSER參數,會將某一用戶備份文件內對象還原到TOUSER參數用戶(FROMUSER參數要與導出用戶匹配)
⑤用戶使用自身導出備份文件,僅使用TABLES參數可還原參數內表
⑥DBA用戶使用TOUSER與TABLES參數,會將某一用戶備份文件內TABLES參數內的表還原到TOUSER參數內用戶
區分兩種情況:某些表備份文件由自己導出(非DBA)還是由DBA用戶導出,如若為自己導出(非DBA),則情況如下:
# scott_tables.dmp為使用scott用戶導出的表bonus, salgrade # 執行下面語句: imp system/orcl@orcl file=d:\scott_tables.dmp full=y # 成功將scott_tables.dmp內所有表bonus、salgrade導入system # 刪掉system用戶下bonus表,執行下面語句: imp system/orcl@orcl file=d:\scott_tables.dmp tables=bonus # 成功將表bonus導入system用戶 imp system/orcl@orcl file=d:\scott_tables.dmp touser=test tables=bonus # 成功將表bonus導入用戶test
如若某些表備份文件由其他DBA用戶導出,則情況如下:
# scott_tables.dmp為使用system用戶導出的scott.bonus, scott.salgrade # 刪除表:scott.bonus, scott.salgrade # 執行下面的還原語句: imp system/orcl@orcl file=d:\scott_tables.dmp full=y # 觀察到成功將scott.bonus, scott.salgrade表還原到scott # 刪掉scott用戶下bonus表,執行下面語句: imp system/orcl@orcl file=d:\scott_tables.dmp fromuser=scott touser=scott tables=bonus # 成功將備份文件中的bonus表還原到scott用戶下 imp system/orcl@orcl file=d:\scott_tables.dmp fromuser=scott touser=test tables=bonus # 成功將備份文件中bonus表還原到test用戶下
讀到這里,這篇“怎么使用Oracle進行數據庫備份與還原”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。