解决方法:

方法一:指定log_archive_dest_1到指定目录(此为永久解决方法,但是需要重启)

--归档路径

SQL> altersystemsetlog_archive_dest_1='LOCATION=/u01/oracle/archivelog';

--归档命名格式

SQL> altersystemsetlog_archive_max_processes = 5;

SQL> altersystemsetlog_archive_format ="archive_%t_%s_%r.arc"scope=spfile;

方法二:increase db_recovery_file_dest_size parameter toreflect the newspace

这种方法需要重启数据库才能使配置生效,在生产系统中显然不适合

SQL> show parameter db_recovery_file_dest_size;

NAMETYPE        VALUE

------------------------------------ ----------- ------------------------------

db_recovery_file_dest_size           big integer2G

SQL> altersystemsetdb_recovery_file_dest_size=4G scope=spfile;

System altered.

方法三:RMAN备份后删除归档,清空归档占用空间,对生产无影响(此为快速恢复数据库的方法)

[oracle@L-DB-128-46 ~]$ rman target /

Recovery Manager: Release 10.2.0.4.0 - Production on星期四 11月 10 17:11:10 2011

Copyright (c) 1982, 2007, Oracle.  Allrights reserved.

connected totargetdatabase: online (DBID=2711954858)

RMAN> run {

allocate channel 'c1'type disk format'/home/oracle/backup/full_db_20111110.bak';

backup databaseplus archivelogdeleteallinput;

release channel c1;

}2> 3> 4> 5>

using target databasecontrol fileinsteadofrecovery catalog

allocated channel: c1

channel c1: sid=145 devtype=DISK

Starting backup at2011-11-10 17:17:31

channel c1: starting archive log backupset

channel c1: specifying archive log(s) inbackupset

input archive log thread=1 sequence=52 recid=51 stamp=764459065

input archive log thread=1 sequence=53 recid=53 stamp=764459065

input archive log thread=1 sequence=54 recid=52 stamp=764459065

input archive log thread=1 sequence=55 recid=54 stamp=764459071

input archive log thread=1 sequence=56 recid=55 stamp=764459076

input archive log thread=1 sequence=57 recid=56 stamp=764492454

input archive log thread=1 sequence=58 recid=57 stamp=764548216

input archive log thread=1 sequence=59 recid=58 stamp=764575211

input archive log thread=1 sequence=60 recid=59 stamp=764640050

input archive log thread=1 sequence=61 recid=60 stamp=764720252

input archive log thread=1 sequence=62 recid=61 stamp=764803366

input archive log thread=1 sequence=63 recid=62 stamp=764845224

input archive log thread=1 sequence=64 recid=63 stamp=764892556

input archive log thread=1 sequence=65 recid=64 stamp=764972503

input archive log thread=1 sequence=66 recid=65 stamp=765015358

input archive log thread=1 sequence=67 recid=66 stamp=765064813

input archive log thread=1 sequence=68 recid=67 stamp=765132696

input archive log thread=1 sequence=69 recid=68 stamp=765152438

input archive log thread=1 sequence=70 recid=69 stamp=765208861

input archive log thread=1 sequence=71 recid=70 stamp=765270027

input archive log thread=1 sequence=72 recid=71 stamp=765329990

input archive log thread=1 sequence=73 recid=72 stamp=765410404

input archive log thread=1 sequence=74 recid=73 stamp=765441266

input archive log thread=1 sequence=75 recid=74 stamp=765496803

input archive log thread=1 sequence=76 recid=75 stamp=765530600

input archive log thread=1 sequence=77 recid=76 stamp=765583207

input archive log thread=1 sequence=78 recid=77 stamp=765622706

input archive log thread=1 sequence=79 recid=78 stamp=765669611

input archive log thread=1 sequence=80 recid=79 stamp=765727244

input archive log thread=1 sequence=81 recid=80 stamp=765764533

input archive log thread=1 sequence=82 recid=81 stamp=765820824

input archive log thread=1 sequence=83 recid=82 stamp=765882059

input archive log thread=1 sequence=84 recid=83 stamp=765962785

input archive log thread=1 sequence=85 recid=84 stamp=766015206

input archive log thread=1 sequence=86 recid=85 stamp=766049222

input archive log thread=1 sequence=87 recid=86 stamp=766101611

input archive log thread=1 sequence=88 recid=87 stamp=766148505

input archive log thread=1 sequence=89 recid=88 stamp=766189244

input archive log thread=1 sequence=90 recid=89 stamp=766251727

input archive log thread=1 sequence=91 recid=90 stamp=766289777

input archive log thread=1 sequence=92 recid=91 stamp=766360805

input archive log thread=1 sequence=93 recid=92 stamp=766383429

input archive log thread=1 sequence=94 recid=93 stamp=766423722

input archive log thread=1 sequence=95 recid=94 stamp=766486811

input archive log thread=1 sequence=96 recid=95 stamp=766548055

input archive log thread=1 sequence=97 recid=96 stamp=766620005

input archive log thread=1 sequence=98 recid=97 stamp=766645228

input archive log thread=1 sequence=99 recid=98 stamp=766706408

input archive log thread=1 sequence=100 recid=99 stamp=766749605

channel c1: starting piece 1 at2011-11-10 17:17:32

channel c1: finished piece 1 at2011-11-10 17:17:57

piece handle=/home/oracle/backup/full_db_20111110.bak tag=TAG20111110T171731 comment=NONE

channel c1: backup setcomplete, elapsedtime: 00:00:26

channel c1: deleting archive log(s)

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_13/o1_mf_1_52_79ftss3d_.arc recid=51 stamp=764459065

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_13/o1_mf_1_53_79ftss8m_.arc recid=53 stamp=764459065

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_13/o1_mf_1_54_79ftss8t_.arc recid=52 stamp=764459065

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_13/o1_mf_1_55_79ftsyyr_.arc recid=54 stamp=764459071

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_13/o1_mf_1_56_79ftt3tf_.arc recid=55 stamp=764459076

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_14/o1_mf_1_57_79gvf6p0_.arc recid=56 stamp=764492454

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_14/o1_mf_1_58_79jkvqxd_.arc recid=57 stamp=764548216

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_15/o1_mf_1_59_79kd7c5c_.arc recid=58 stamp=764575211

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_16/o1_mf_1_60_79mcklq6_.arc recid=59 stamp=764640050

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_16/o1_mf_1_61_79osvw5g_.arc recid=60 stamp=764720252

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_17/o1_mf_1_62_79rc16n2_.arc recid=61 stamp=764803366

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_18/o1_mf_1_63_79smx8qs_.arc recid=62 stamp=764845224

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_18/o1_mf_1_64_79v24d0y_.arc recid=63 stamp=764892556

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_19/o1_mf_1_65_79xj6pvv_.arc recid=64 stamp=764972503

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_20/o1_mf_1_66_79yt1y2z_.arc recid=65 stamp=765015358

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_20/o1_mf_1_67_7b0bcfbg_.arc recid=66 stamp=765064813

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_21/o1_mf_1_68_7b2dnr9h_.arc recid=67 stamp=765132696

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_21/o1_mf_1_69_7b2zxpbj_.arc recid=68 stamp=765152438

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_22/o1_mf_1_70_7b4q0x6c_.arc recid=69 stamp=765208861

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_23/o1_mf_1_71_7b6lrclk_.arc recid=70 stamp=765270027

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_23/o1_mf_1_72_7b8fb6lm_.arc recid=71 stamp=765329990

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_24/o1_mf_1_73_7bbvv4c6_.arc recid=72 stamp=765410404

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_25/o1_mf_1_74_7bcszloc_.arc recid=73 stamp=765441266

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_25/o1_mf_1_75_7bfj7389_.arc recid=74 stamp=765496803

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_26/o1_mf_1_76_7bgk782h_.arc recid=75 stamp=765530600

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_26/o1_mf_1_77_7bj4m6wd_.arc recid=76 stamp=765583207

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_27/o1_mf_1_78_7bkc5lpk_.arc recid=77 stamp=765622706

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_27/o1_mf_1_79_7blrzcps_.arc recid=78 stamp=765669611

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_28/o1_mf_1_80_7bnk8d5x_.arc recid=79 stamp=765727244

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_29/o1_mf_1_81_7boooo8f_.arc recid=80 stamp=765764533

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_29/o1_mf_1_82_7bqdnrc7_.arc recid=81 stamp=765820824

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_30/o1_mf_1_83_7bs8gbxh_.arc recid=82 stamp=765882059

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_31/o1_mf_1_84_7bvq91kg_.arc recid=83 stamp=765962785

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_10_31/o1_mf_1_85_7bxbh66d_.arc recid=84 stamp=766015206

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_01/o1_mf_1_86_7bycp6nw_.arc recid=85 stamp=766049222

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_01/o1_mf_1_87_7bzyvbv0_.arc recid=86 stamp=766101611

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_02/o1_mf_1_88_7c1dns1p_.arc recid=87 stamp=766148505

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_02/o1_mf_1_89_7c2nfwdp_.arc recid=88 stamp=766189244

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_03/o1_mf_1_90_7c4kgh7y_.arc recid=89 stamp=766251727

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_04/o1_mf_1_91_7c5pmk14_.arc recid=90 stamp=766289777

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_04/o1_mf_1_92_7c7vz5mp_.arc recid=91 stamp=766360805

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_05/o1_mf_1_93_7c8l259j_.arc recid=92 stamp=766383429

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_05/o1_mf_1_94_7c9sfbg5_.arc recid=93 stamp=766423722

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_06/o1_mf_1_95_7ccq0v8h_.arc recid=94 stamp=766486811

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_07/o1_mf_1_96_7cfltpy7_.arc recid=95 stamp=766548055

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_07/o1_mf_1_97_7chs35kp_.arc recid=96 stamp=766620005

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_08/o1_mf_1_98_7cjkqd4b_.arc recid=97 stamp=766645228

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_08/o1_mf_1_99_7clfh7z5_.arc recid=98 stamp=766706408

archive log filename=/home/oracle/flash_recovery_area/online/archivelog/2011_11_09/o1_mf_1_100_7cmqo581_.arc recid=99 stamp=766749605

Finished backup at2011-11-10 17:17:58

Starting backup at2011-11-10 17:17:58

channel c1: starting fulldatafile backupset

channel c1: specifying datafile(s) inbackupset

input datafile fno=00005 name=/home/oracle/oradata/online/cuteinfo02.dbf

input datafile fno=00006 name=/home/oracle/oradata/online/rman_tbs01.dbf

input datafile fno=00001 name=/home/oracle/oradata/online/system01.dbf

input datafile fno=00003 name=/home/oracle/oradata/online/sysaux01.dbf

input datafile fno=00002 name=/home/oracle/oradata/online/undotbs01.dbf

input datafile fno=00004 name=/home/oracle/oradata/online/users01.dbf

channel c1: starting piece 1 at2011-11-10 17:17:58

released channel: c1

RMAN-00571: ===========================================================

RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============

RMAN-00571: ===========================================================

RMAN-03002: failure ofbackup plus archivelog commandat11/10/2011 17:17:59------------------此错误是笔者输入了固定的文件名导致,如下改为full_db_%U.bak后输出正常

ORA-19504: failed tocreatefile"/home/oracle/backup/full_db_20111110.bak"

ORA-27038: created file already exists

Additional information: 1

RMAN> run {

allocate channel 'c1'type disk format'/home/oracle/backup/full_db_%U.bak';

backup databaseplus archivelogdeleteallinput;

release channel c1;

}2> 3> 4> 5>

allocated channel: c1

channel c1: sid=145 devtype=DISK

Starting backup at2011-11-10 17:20:22

specification does notmatchanyarchive loginthe recovery catalog

backup cancelled because allfiles were skipped

Finished backup at2011-11-10 17:20:22

Starting backup at2011-11-10 17:20:22

channel c1: starting fulldatafile backupset

channel c1: specifying datafile(s) inbackupset

input datafile fno=00005 name=/home/oracle/oradata/online/cuteinfo02.dbf

input datafile fno=00006 name=/home/oracle/oradata/online/rman_tbs01.dbf

input datafile fno=00001 name=/home/oracle/oradata/online/system01.dbf

input datafile fno=00003 name=/home/oracle/oradata/online/sysaux01.dbf

input datafile fno=00002 name=/home/oracle/oradata/online/undotbs01.dbf

input datafile fno=00004 name=/home/oracle/oradata/online/users01.dbf

channel c1: starting piece 1 at2011-11-10 17:20:22

channel c1: finished piece 1 at2011-11-10 17:20:37

piece handle=/home/oracle/backup/full_db_03mrap2m_1_1.bak tag=TAG20111110T172022 comment=NONE

channel c1: backup setcomplete, elapsedtime: 00:00:15

channel c1: starting fulldatafile backupset

channel c1: specifying datafile(s) inbackupset

including currentcontrol fileinbackupset

including currentSPFILEinbackupset

channel c1: starting piece 1 at2011-11-10 17:20:38

channel c1: finished piece 1 at2011-11-10 17:20:39

piece handle=/home/oracle/backup/full_db_04mrap35_1_1.bak tag=TAG20111110T172022 comment=NONE

channel c1: backup setcomplete, elapsedtime: 00:00:02

Finished backup at2011-11-10 17:20:39

Starting backup at2011-11-10 17:20:39

specification does notmatchanyarchive loginthe recovery catalog

backup cancelled because allfiles were skipped

Finished backup at2011-11-10 17:20:39

released channel: c1

RMAN>

oracle虚拟机装flash,oracle log_archive_dest_1 未指定导致flash_recovery_area引发数据库挂起...相关推荐

  1. oracle log_archive_dest_1 未指定导致flash_recovery_area引发数据库挂起

    故障现象: 一.错误日志 Thu Nov 10 17:08:43 2011 ORACLE Instance zjport - Archival Error Thu Nov 10 17:08:43 20 ...

  2. 装虚拟机装Oracle数据库

    装虚拟机注意的几个点 本次装载版本的:12.0 1.点击setup.exe就可以开始安装了,开始安装向导 2.硬件兼容,我们选择低配5.x就可以了 3.安装硬盘,选择稍后安装 4.选择安装的系统类型, ...

  3. oracle中断进程,中断ORACLE数据库关闭进程导致错误案例

    昨晚下班的时候,我准备关闭本机的虚拟机上的ORACLE数据库后准备下班,但是由于我SecureCRT开了多个窗口,结果一不小心,疏忽之下在一个生产服务器上执行了shutdown immediate命令 ...

  4. 虚拟机上安装Oracle 12c 单机到单机的DG

    虚拟机上安装Oracle 12c 单机到单机的DG 环境准备: ubuntu16.04+kvm1.3.2 CentOS6.5 64bit oracle 12c1 test@vostro-2421:/m ...

  5. 连接oracle内存溢出,Linux主机内存溢出导致oracle的SYS用户无法正常登陆

    一般情况下,ORACLE DBA看到如下情况的第一反应是,数据库实例没有启动或者是数据库环境变量没有设置正确,今天遇到的情况均不是以上两种情况,有点特别,且来看看为哪般. oracle@POC-SV1 ...

  6. oracle 10g磁盘管理,Oracle 10g UNDO表空间过大导致磁盘空间不足的解决

    在Oracle 10g数据库的应用中,出现了UNDO表空间过大导致磁盘空间不足而崩溃的现象(ORA-30036: unable to extend segment by 8 in undo table ...

  7. oracle ipc message,【案例】Oracle RAC IPC send timeout error导致RAC的节点挂起解决办法

    天萃荷净 Oracle研究中心案例分析:运维DBA反映Oracle RAC环境数据库节点挂起,分享日志发现是由于IPC send timeout error导致RAC的节点挂起. 本站文章除注明转载外 ...

  8. 利用Oracle虚拟私有数据库进行整合

    Oracle虚拟私有数据库(Virtual Private Database,下文简称VPD)是Oracle数据库产品中提供的一个安全功能,它能够保证Oracle数据库的多租户特性,与此同时,可以帮助 ...

  9. oracle虚拟机导入表,在Linux虚拟机上安装Oracle数据库超完整版!)

    在线QQ客服:1922638 专业的SQL Server.MySQL数据库同步软件 在介绍并安装了Oracle数据库之后,我觉得有必要记录一下我所踏入的陷阱(本文几乎包含了安装Oracle时遇到的所有 ...

最新文章

  1. win2000.win2003关闭端口详解--防黑必备
  2. pytorch bceloss测试
  3. Textview的3种事件
  4. 开启 Appserv 的 curl 功能
  5. Java定义全局变量的方法
  6. 谷歌修复另一枚已遭利用的 Chrome 释放后使用0day,细节未公开
  7. shell 构建脚本基础
  8. 吉大19秋学期计算机应用基础在线作业,吉大15春学期《计算机应用基础》在线作业二满分答案...
  9. pandownload 替代品_Pandownload倒下了,找一款替代品
  10. c51流水灯实验报告汇编语言,51单片机流水灯实验报告.doc
  11. 如何修改计算机mac地址吗,如何修改电脑的Mac地址
  12. 【华为云·云筑2020】云学院考卷答案
  13. 使用matlab产生LED灯闪烁代码在普中板子中实验
  14. android型号的平板电脑,AUTOID Pad /Air-(win)/Air-(android)工业级平板电脑
  15. 你所不了解的微服务架构
  16. 亚马逊退货退款常见问题解答|官方
  17. C/C++编程学习:百行代码实现小游戏(剪刀石头布)
  18. AIX系统的磁带备份
  19. SVN conflict的解决办法
  20. IO接口以太网低频工业RFID读写器|读取器CK-LR12-E00之Modbus TCP的寄存器定义与说明

热门文章

  1. flyway版本号_Spring Boot 集成 Flyway 实现数据库版本控制
  2. 资源放送丨《Oracle 12C~19C统计信息的最佳实践》PPT视频
  3. 3种方式限制ip访问Oracle数据库
  4. 北冥有 Data,其名为鲲,鲲之大,一个 MySQL 放不下!
  5. 论文解读丨空洞卷积框架搜索
  6. 总是记不住java的IO流用法?用N个问题教你掌握java IO流
  7. 如何使用mock应对测试所需随机数据
  8. 拯救深度学习:标注数据不足下的深度学习方法
  9. oracle 交叉链接,Oracle里的交叉SQL语句写法-数据库专栏,ORACLE
  10. Redis集群如何安装