Oracle逻辑备份

逻辑备份

expdp

备份恢复表空间

创建测试数据

# 创建表空间 
create tablespace itpux01 datafile '/oradata/fghsdb/itpux01.dbf' size 100m autoextend off extent management local 
autoallocate segment space management auto; 
create tablespace itpux02 datafile '/oradata/fghsdb/itpux02.dbf' size 100m autoextend off extent management local 
autoallocate segment space management auto; 
# 创建用户并授权 
create user itpux01 identified by itpux01 default tablespace itpux01;
create user itpux02 identified by itpux02 default tablespace itpux02;
grant dba to itpux01;
grant dba to itpux02;
alter user itpux01 quota unlimited on itpux01;
alter user itpux02 quota unlimited on itpux02;
#用户登录并创建测试表 
conn itpux01/itpux01;
create table itpux01 (id number(30) primary key not null,name varchar2(10)); 
insert into itpux01 values (1,'itpux01');
insert into itpux01 values (2,'itpux02');
insert into itpux01 values (3,'itpux03');
insert into itpux01 values (4,'itpux04');
insert into itpux01 values (5,'itpux05');
commit;
select * from itpux01.itpux01;conn itpux02/itpux02;
create table itpux02 (id number(30) primary key not null,name varchar2(10)); 
insert into itpux02 values (1,'itpux01');
insert into itpux02 values (2,'itpux02');
insert into itpux02 values (3,'itpux03');
insert into itpux02 values (4,'itpux04');
insert into itpux02 values (5,'itpux05');
commit;
select * from itpux02.itpux02;#删除表空间
drop tablespace itpux01 including contents and datafiles;
drop tablespace itpux02 including contents and datafiles;

数据泵导出导入

#获取DDL语句
select dbms_metadata.get_ddl ('TABLESPACE','ITPUX01') from dual; 
select dbms_metadata.get_ddl ('TABLESPACE','ITPUX02') from dual; #创建备份用户
create user backup identified by backup;
grant dba to backup;
create directory bak_dir as '/tmp';
grant read,write on directory bak_dir to backup;#导出
nohup expdp backup/backup directory=bak_dir dumpfile=expdp_itpux_ts.dmp logfile=expdp_itpux_ts.log tablespaces=itpux01,itpux02 parallel=4 &
#导入
nohup impdp backup/backup directory=bak_dir dumpfile=expdp_itpux_ts.dmp logfile=impdp_itpux_ts.log tablespaces=itpux01,itpux02 parallel=4 &

rman备份表空间

#备份表空间
rman target /
Configure default device type to disk;
configure channel 1 device type disk format '/backup/orcl_%U.bak';
backup tablespace itpux01,itpux02 include current controlfile;
#恢复表空间
restore tablespace itpux01,itpux02;
recover tablespace itpux01 auxiliary destination '/backup';

参考资料

https://blog.csdn.net/qq_40768088/article/details/124266687

待研究

#grant DATAPUMP_EXP_FULL_DATABASE to backup;
#grant DATAPUMP_IMP_FULL_DATABASE to backup;cat > expdp_itpux.par << "EOF"
userid=backup/backup 
directory=bak_dir 
dumpfile=expdp_itpux_ts.$BAKDATE.%U.dmp 
logfile=expdp_itpux_ts.$BAKDATE.log 
tablespaces=itpux01,itpux02
parallel=4 
EOFcat > expdp.sh << "EOF"
export BAKDATE=`date +%Y%m%d`
expdp parfile=expdp_itpux.par
EOF#后台执行
chmod +x expdp.sh
nohup ./expdp.sh & 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/44658.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

编程题目积累(day5)

题目&#xff1a; 源数组a&#xff0c;将a中所有元素乘以2之后添加进a&#xff0c;则这个a就叫双倍数组&#xff0c;给你一个数组a&#xff0c;判断它是不是双倍数组&#xff0c;如果是则输出源数组&#xff0c;不是则输出空数组。 补充知识&#xff1a; python中枚举和字典…

OAuth 和 SSO 场景中的 URL 语法解析

OAuth 和 SSO 场景中的 URL 语法解析 在 OAuth 和 SSO (Single Sign-On) 场景中&#xff0c;URL 是一个关键组件&#xff0c;用于在客户端和服务器之间传递认证请求和响应。让我们深入解析这个 URL&#xff1a; https://api.commerce.ondemand.com/occ/oauth/authorize?resp…

【python数据结构精讲】双端队列

通过总结《流畅的Python》等书中的知识&#xff0c;总结Python中常用工具的方法。 deque&#xff0c;学名双端队列。 1. 常用方法 append()&#xff1a;队列尾部添加appendleft()&#xff1a;队首添加pop()&#xff1a;移除队列最后一个元素popleft()&#xff1a;移除队列第一…

AI算法14-套索回归算法Lasso Regression | LR

套索回归算法概述 套索回归算法简介 在统计学和机器学习中&#xff0c;套索回归是一种同时进行特征选择和正则化&#xff08;数学&#xff09;的回归分析方法&#xff0c;旨在增强统计模型的预测准确性和可解释性&#xff0c; 正则化是一种回归的形式&#xff0c;它将系数估…

并发编程-06之Semaphore

一 Semaphore入门 1.1 什么是Semaphore Semaphore&#xff0c;俗称信号量&#xff0c;它是操作系统中PV操作的原语在java的实现&#xff0c;它也是基于AbstractQueuedSynchronizer实现的。 Semaphore的功能非常强大&#xff0c;大小为1的信号量就类似于互斥锁&#xff0c;通过同…

centos部署jar包

第一步&#xff1a; 将IDEA中的项目打包为jar,将这个jar文件放到centos服务器上的目录里&#xff0c;我在opt新建api目录&#xff0c;将jar文件放入&#xff0c;如下图&#xff1a; 第二步&#xff1a; 将需要读取的配置文件也放入此目录(其他目录也可以&#xff0c;和脚本中…

【笔记】记一次读写分离之shardingsphere.datasource导致数据源为空错误

错误&#xff1a; *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: url attribute is not specified and no embedded datasource could be configured. Reason: Failed to determin…

搭建RAG系统就这么简单:LangChain|RAG是什么?

RAG是什么 “RAG”&#xff08;Retrieval-Augmented Generation&#xff09;是一种结合了检索&#xff08;Retrieval&#xff09;和生成&#xff08;Generation&#xff09;的人工智能技术&#xff0c;它在大模型中被需要的原因包括&#xff1a; 知识丰富性&#xff1a; 大模…

探索数据结构与算法的奇妙世界 —— Github开源项目推荐《Hello 算法》

在浩瀚的编程与计算机科学领域中&#xff0c;数据结构与算法无疑是每位开发者攀登技术高峰的必经之路。然而&#xff0c;对于初学者而言&#xff0c;这条路往往布满了荆棘与挑战。幸运的是&#xff0c;今天我要向大家推荐一个令人振奋的项目——《Hello Algo》&#xff0c;它正…

ubuntu使用kubeadm搭建k8s集群

一、卸载k8s kubeadm reset -f modprobe -r ipip lsmod rm -rf ~/.kube/# 自己选择性删除 坑点哦 rm -rf /etc/kubernetes/ rm -rf /etc/systemd/system/kubelet.service.d rm -rf /etc/systemd/system/kubelet.service rm -rf /usr/bin/kube* rm -rf /etc/cni rm -rf /opt/cn…

C# Winform 自定义事件实战

在C#的WinForms中&#xff0c;自定义事件是一种强大的工具&#xff0c;它允许你创建自己的事件&#xff0c;从而在特定条件下通知订阅者。自定义事件通常用于封装业务逻辑&#xff0c;使代码更加模块化和易于维护。下面我将通过一个实战例子来展示如何在WinForms中创建和使用自…

多线程编程中的条件变量及其优化

本套课在线学习视频&#xff08;网盘地址&#xff0c;保存到网盘即可免费观看&#xff09;&#xff1a; 链接&#xff1a;https://pan.quark.cn/s/7220b198cf00 在多线程编程中&#xff0c;条件变量是一种用于线程间通信和同步的机制。通过使用条件变量&#xff0c;可以有效地…

Prometheus + alermanager + webhook-dingtalk 告警

添加钉钉机器人 1. 部署 alermanager 1.1 下载软件包 wget https://github.com/prometheus/alertmanager/releases/download/v0.26.0/alertmanager-0.26.0.linux-amd64.tar.gz 网址 &#xff1a;Releases prometheus/alertmanager (github.com) 1.2 解压软件包 mkdir -pv …

医日健集团技术力量体现测试的背后

医日健集团覆盖式更新 科技日新月异的时代&#xff0c;医日健集团始终走在行业的前列。近日&#xff0c;医日健集团外勤技术人员全面对市场点位投放的数智药房进行了新系统升级和机器测试&#xff0c;这是医日健对于科技创新的最新尝试。 以客户体验为核心优化新体验 医日健集团…

NCNN源码学习(1):Mat详解

前言:最原始的发行版本代码比较简洁,我们从2017年ncnn第一次开源的版本阅读mat的源码。阅读源码味如嚼蜡,下面就开始吧! 目录 构造函数 内存分配 数据成员 申请和释放内存 引用计数 辅助函数 填充函数fill 参考 构造函数 ncnn提供了8种构造函数的方式。 // emptyM…

Js 前置,后置补零的原生方法与补字符串 padStart及padEnd

在工作中&#xff0c;遇到了需要将不满八位的一个字符串进行后补0的操作&#xff0c;所以就在网上学习了关于js原生补充字符串的方法&#xff0c;然后用这篇博客记录下来。 目录 前置补充字符串 String.prototype.padStart() 后置补充字符串String.prototype.padEnd() 前置补…

将独热码应用到神经网络中

引言 接上回&#xff0c;本文继续说如何用TensorFlow将独热编码应用到一个简单的神经网络中&#xff0c;以实现从一段随机文本到另一段随机文本的转换。 步骤一&#xff1a;导入库 import tensorflow as tf import numpy as np import random import string步骤二&#xff1…

【超音速 专利 CN117710683A】基于分类模型的轻量级工业图像关键点检测方法

申请号CN202311601629.7公开号&#xff08;公开&#xff09;CN117710683A申请日2023.11.27申请人&#xff08;公开&#xff09;超音速人工智能科技股份有限公司发明人&#xff08;公开&#xff09;张俊峰(总); 杨培文(总); 沈俊羽; 张小村 技术领域 本发明涉及图像关键点检测…

数据库MySQL下载安装

MySQL下载安装地址如下&#xff1a; MySQL :: Download MySQL Community Server 1、下载界面 2、点击下载 3、解压记住目录 4、配置my.ini文件 未完..

C语言课程回顾:九、C语言之预处理命令

9 预处理命令 9 预处理命令9.1 概述9.2 宏定义9.2.1 无参宏定义9.2.2 带参宏定义 9.3 文件包含9.4 条件编译9.5 本章小结9.6 扩展 10种软件滤波方法的示例程序1、限副滤波2、中位值滤波法3、算术平均滤波法4、递推平均滤波法&#xff08;又称滑动平均滤波法&#xff09;5、中位…