博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle归档的开启和关闭
阅读量:4841 次
发布时间:2019-06-11

本文共 1623 字,大约阅读时间需要 5 分钟。

  --1、开启归档

  【步骤】

  a.一致性关闭数据库(shutdown [immediate | transactional |normal])

  b.启动到mount阶段(startup mount)

  c.切换到归档模式(alter database archivelog[manual])

  d.切换到open阶段(alter database open)

  e.对数据做一个完整备份(full backup)

  show parameter spfile

  alter system set log_archive_dest_1='location=/ggs/arch_data' scope=spfile;

  alter system set db_recovery_file_dest_size=100g scope=spfile sid='*';

  alter system set db_recovery_file_dest='/ggs/ora_recovery' scope=spfile;

  alter system set log_archive_format='arch_%t_%s_%r.arc' scope=spfile;

  shutdown immediate;

  startup mount;

  alter database archivelog;

  alter database open ;

  archive log list;

  --2、关闭归档

  【步骤】归档模式切换到非归档模式

  a. [immediate | transactional |normal])一致性关闭数据库(shutdown

  b.启动到mount阶段(startup mount)

  c.切换到归档模式(alter database noarchivelog)

  d.切换到open阶段(alter database open)

  关闭归档模式:

  shutdown immediate;

  startup mount;

  alter database noarchivelog;

  alter database open;

  查看归档文件:

  select * from v$log;

  select * from v$logfile;

  select * from v$flash_recovery_area_usage;

  report obsolete;

  delete obsolete;

  备份归档文件:

  backup archivelog all;

  也可以:

  先执行alter system switch logfile;

  再找到归档日志位置,复制到别的地方即可。

  rman target /

  delete archivelog all completed before 'sysdate-7';

  backup first

  backup format '/tmp/arch-%t_%s_%u' archivelog all delete input;

  或者backup database plus archivelog;

  删除归档文件:

  rman target / 或者 rman target user/password@tns

  list archivelog all;

  crosscheck archivelog all;

  list expired archivelog all;

  delete expired archivelog all;(编辑:雷林鹏 来源:网络)

转载于:https://www.cnblogs.com/pengpeng1208/p/9546955.html

你可能感兴趣的文章
安装--->Tomcat监控工具Probe
查看>>
Java网络编程(URL&URLConnection)
查看>>
Java NIO学习笔记---I/O与NIO概述
查看>>
java接口中的成员方法和成员变量
查看>>
java中构造函数的特点
查看>>
Qt5:窗口背景色的设置
查看>>
NFC初步接触
查看>>
Puppet常识梳理
查看>>
iframe内联网页的应用
查看>>
Appium + Python -------------元素定位
查看>>
Linux shell 自启动脚本写法
查看>>
Linux GNU GAS introduction
查看>>
CSS的常用属性(一)
查看>>
scrapy install
查看>>
android 开发 View _13 绘制图片与BitmapShader位图的图像渲染器
查看>>
[bzoj2131]免费的馅饼 树状数组优化dp
查看>>
CreateMutex()参数报错问题
查看>>
Linux三剑客-常用命令
查看>>
Excel的列数以数字格式查看
查看>>
unity 2d 和 NGUI layer
查看>>