3. Oracle資料庫邏輯備份與恢復

来源:https://www.cnblogs.com/lottu/archive/2018/08/24/9529096.html
-Advertisement-
Play Games

一. Oracle邏輯備份介紹 Oracle邏輯備份的核心就是複製數據;Oracle提供的邏輯備份與恢復的命令有exp/imp,expdp/impdp。當然像表級複製(create table table_back as select * from table)也算是一種邏輯備份。Oracle邏輯備 ...


一. Oracle邏輯備份介紹

  Oracle邏輯備份的核心就是複製數據;Oracle提供的邏輯備份與恢復的命令有exp/imp,expdp/impdp。當然像表級複製(create table table_back as select * from table)也算是一種邏輯備份。Oracle邏輯備份沒有支持增量備份;對數據恢復也是非一致性的。所以一般都是用於數據遷移的工作。

  創建演示對象

create tablespace lottu datafile '/data/oracle/data/lottu01.dbf' size 2G autoextend on;
create user lottu identified by li0924  default tablespace lottu;  
grant connect, resource to lottu ;
grant select any dictionary to lottu ;
create user rax identified by rax123 default tablespace lottu;  
grant connect, resource to rax ;
grant select any dictionary to rax ;
conn lottu/li0924
create table tbl_lottu as select level as id, 'lottu' as name from dual connect by level <= 10000;
create table tbl_lottu_01 as select level as id, 'lottu'||level as name from dual connect by level <= 100;
conn rax/rax123
create table tbl_rax as select level as id, 'rax' as name from dual connect by level <= 10000;

二. Oracle導出/導入命令exp/imp

  exp/imp命令是最原始的一種數據保護工具;效率方面確實不好;支持客戶端執行操作。在這簡單演示下如何操作。

  備份的對象列表:

. exporting tablespace definitions
. exporting profiles
. exporting user definitions
. exporting roles
. exporting resource costs
. exporting rollback segment definitions
. exporting database links
. exporting sequence numbers
. exporting directory aliases
. exporting context namespaces
. exporting foreign function library names
. exporting PUBLIC type synonyms
. exporting private type synonyms
. exporting object type definitions
. exporting system procedural objects and actions
. exporting pre-schema procedural objects and actions
. exporting cluster definitions

2.1 導出命令exp

  • 導出表中某些記錄
exp lottu/li0924 GRANTS=Y TABLES=tbl_lottu  QUERY="'where id < 100'" FILE=/home/oracle/exp/lottu01.dmp LOG=/home/oracle/exp/log/lottu01.log
  • 導出某個Schema下某些表
exp lottu/li0924 GRANTS=Y TABLES="(tbl_lottu,tbl_lottu_01)" FILE=/home/oracle/exp/lottu02.dmp LOG=/home/oracle/exp/log/lottu02.log
  • 導出哪些Schema下的對象
exp system/Oracle235 OWNER="(lottu,rax)"  FILE=/home/oracle/exp/system03.dmp LOG=/home/oracle/exp/log/system03.log
  • 導出全庫
exp system/Oracle235 FULL=Y FILE=/home/oracle/exp/system04.dmp LOG=/home/oracle/exp/log/system04.log

2.2 導入命令imp

  imp相當於exp的反向操作;操作之前;需要確認需導入的對象在資料庫上面是不存在的;若是在本地做恢復;需要將恢復的對象先drop掉;在執行imp命令操作。

  • 導入某個Schema下某些表;對exp上面的示例2
[oracle@oracle235 ~]$ sqlplus lottu/li0924

SQL*Plus: Release 11.2.0.4.0 Production on Sat Aug 4 04:42:18 2018

Copyright (c) 1982, 2013, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> drop table tbl_lottu;

Table dropped.

SQL> drop table tbl_lottu_01;

Table dropped.

SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
[oracle@oracle235 ~]$ imp lottu/li0924 GRANTS=Y TABLES="(tbl_lottu,tbl_lottu_01)" FILE=/home/oracle/exp/lottu02.dmp LOG=/home/oracle/imp/lottu02.log

Import: Release 11.2.0.4.0 - Production on Sat Aug 4 04:43:25 2018

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.


Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

Export file created by EXPORT:V11.02.00 via conventional path
import done in UTF8 character set and UTF8 NCHAR character set
export server uses AL16UTF16 NCHAR character set (possible ncharset conversion)
. importing LOTTU's objects into LOTTU
. importing LOTTU's objects into LOTTU
. . importing table                    "TBL_LOTTU"      10000 rows imported
. . importing table                 "TBL_LOTTU_01"        100 rows imported
Import terminated successfully without warnings.

三. Oracle導出/導入命令expdp/impdp

  對expdp/impdp是在Oracle10G之後才出現;其實本身使用並不是需要很高的技術含量。相比exp/imp;在功能和效率方面有巨大的提升。

  • 支持並行
  • 支持任務的暫停和重啟動
  • 支持對象的過濾

  備份/恢復效率方面那是大大的提升。所以10G之後可以棄用exp/imp。

  empdp和impdp是服務端的工具程式,他們只能在ORACLE服務端使用,不能在客戶端使用;使用之前需要創建目錄;如下演示

  • 在伺服器上創建目錄
mkdir -p /data/ora_dir_lottu
  • 創建邏輯目錄,給操作的用戶賦予在指定目錄的操作許可權
create directory dp_lottu as '/data/ora_dir_lottu';
grant read,write on directory dp_lottu to lottu;

3.1 導出命令expdp

  • 按表模式導出
expdp lottu/li0924  tables=tbl_lottu,tbl_lottu_01 dumpfile=expdp_lottu01.dmp logfile=expdp_lottu01.log directory=dp_lottu
  • 按表空間導出
expdp "'/ as sysdba'" tablespaces=tp_lottu dumpfile=expdp_lottu02.dmp logfile=expdp_lottu02.log directory=dp_lottu job_name=lottu02
  • 導出方案
expdp "'/ as sysdba'" SCHEMAS=lottu,rax dumpfile=expdp_lottu05.dmp logfile=expdp_lottu05.log directory=dp_lottu
  • 導出整個資料庫
expdp "'/ as sysdba'" dumpfile=expdp_full.dmp full=y logfile=expdp_lottu05.log directory=dp_lottu

3.2 導入命令impdp

  impdp相當於導入命令expdp的反向操作;使用方法跟expdp相同。相當於把上面expdp替換即可。

  impdp導入的方案,表或者表空間與dump文件不一致;可以用下列參數替換

REMAP_SCHEMA
Objects from one schema are loaded into another schema.

REMAP_TABLE
Table names are remapped to another table.
For example, REMAP_TABLE=HR.EMPLOYEES:EMPS.

REMAP_TABLESPACE
Tablespace objects are remapped to another tablespace.

  如示例所示:#將lottu用戶下的數據全部導入到表空間tp_rax

impdp "'/ as sysdba'" directory=dp_lottu dumpfile=expdp_lottu04.dmp remap_tablespace=tp_lottu:tp_rax 

四. 複製表

  Oracle中複製表方式:

create table tablename_back as select * from tablename;

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 今年6月畢業,來到公司前前後後各種事情折騰下來,8月中旬才入職。本以為終於可以靜下心來研究技術了,但是又把我分配到了一個幾乎不做技術的解決方案部門,導致現在寫代碼的時間都幾乎沒有了,所以只能在每天下班後留在公司研究一下自己喜歡的技術,搞得特別晚才回,身心俱疲。 唉~以前天天寫代碼時覺得苦逼,現在沒得 ...
  • 事務 事務用於將某些操作的多個SQL作為原子性操作,一旦有某一個出現錯誤,即可回滾到原來的狀態,從而保證資料庫數據完整性。 1 delimiter \\ 2 create PROCEDURE p1( 3 OUT p_return_code tinyint 4 ) 5 BEGIN 6 DECLARE ...
  • 概述 對於二進位安裝,優點是可以安裝到任何路徑下,靈活性好,一臺伺服器可以安裝多個mysql。缺點是已經繹過編譯,性能不如源碼編譯得好,不能靈活定製編譯參數。如果用戶即不想安裝最簡單卻不夠靈活的RPM包,又不想安裝複雜費時的源碼包,那麼已編譯好的二進位包將是最好的選擇。 一.步驟1: 解壓glib包 ...
  • 今天需要在本地建個資料庫,就下載安裝sql,第一次弄,遇到了一些問題,環境添加到 sql的bin目錄,要用管理員命令運行cm,cd到sql/bin的目錄,輸入 net start mysql 運行sql,可能會出現密碼錯誤,到配置文件,在[mysqld]加入skip-grant-tables 可以不 ...
  • 一致性Hash演算法。 Hash演算法是為了保證數據均勻的分佈,例如有3個桶,分別是0號桶,1號桶和2號桶;現在有12個球,怎麼樣才能讓12個球平均分佈到3個桶中呢?使用Hash演算法的做法是,將12個球從0開始編號,得到這樣的一個序列:0,1,2,3,4,5,6,7,8,9,10,11。將這個序列中的每 ...
  • HBase 數據讀寫過程描述 我們熟悉的在 Hadoop 使用的文件格式有許多種,例如: Avro:用於 HDFS 數據序序列化與 Parquet:常見於 Hive 數據文件保存在 HDFS中 HFile HFile 是 HBase 使用的一種柱狀存儲文件,非常適合隨機和實時讀寫。 HFile 文件 ...
  • 是參考 一下兩篇博文整理了下。 Redis: https://www.cnblogs.com/5ishare/p/6492380.html RabbitMq: https://www.cnblogs.com/yangecnu/p/4227535.html 話不多說,下麵直接貼demo 百度雲盤 地址 ...
  • -- 統計 select count(*) as '當天記錄數' from web_product where date(p_createtime) = curdate(); select count(*) as '當天記錄數' from web_product where to_days(p_cr... ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...