查看: 2752|回复: 2

[备份恢复] RMAN备份释放通道是报错

[复制链接]
招聘 : 技术支持/维护
论坛徽章:
5
2010新春纪念徽章
日期:2010-03-01 11:20:052011新春纪念徽章
日期:2011-02-18 11:43:33ITPUB十周年纪念徽章
日期:2011-11-01 16:24:51懒羊羊
日期:2015-03-04 14:52:112015年新春福章
日期:2015-03-06 11:58:18
跳转到指定楼层
1#
发表于 2015-2-13 20:47 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
RMAN配置:RMAN configuration parameters for database with db_unique_name ODSDB are:
CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
CONFIGURE BACKUP OPTIMIZATION OFF; # default
CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
CONFIGURE CONTROLFILE AUTOBACKUP ON;
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
CONFIGURE MAXSETSIZE TO UNLIMITED; # default
CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
CONFIGURE SNAPSHOT CONTROLFILE NAME TO '+DSDATA/ODSDB/AUTOBACKUP/snapcf_odsdb1.f';


RMAN备份报错:
Starting Control File and SPFILE Autobackup at 12-FEB-15
piece handle=c-3436946150-20150212-03 comment=API Version 2.0,MMS Version 8.0.0.68
Finished Control File and SPFILE Autobackup at 12-FEB-15
starting full resync of recovery catalog
full resync complete
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-12005: error during channel cleanup
ORA-03113: end-of-file on communication channel


后台日志报错:
Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0xFFFFFFFFFFFA740C] [PC:0xFFFFFFFFFFFA740C, {empty}] [flags: 0x0, count: 1]
Errors in file /u01/app/oracle/diag/rdbms/odsdb/odsdb1/trace/odsdb1_ora_19268008.trc  (incident=81238):
ORA-07445: exception encountered: core dump [PC:0xFFFFFFFFFFFA740C] [SIGSEGV] [ADDR:0xFFFFFFFFFFFA740C] [PC:0xFFFFFFFFFFFA740C] [Address not mapped to object] []
Incident details in: /u01/app/oracle/diag/rdbms/odsdb/odsdb1/incident/incdir_81238/odsdb1_ora_19268008_i81238.trc
Use ADRCI or Support Workbench to package the incident.
See Note 411.1 at My Oracle Support for error and packaging details.
Fri Feb 13 20:33:49 2015
Dumping diagnostic data in directory=[cdmp_20150213203349], requested by (instance=1, osid=19268008), summary=[incident=81238].
Fri Feb 13 20:34:37 2015
Sweep [inc][81238]: completed
Sweep [inc2][81238]: completed


从网上搜了一下,说有可能是快速闪回区空间满,看了,没问题呀,如下:
SQL> show parameter db_recovery_file_dest

NAME                                 TYPE                              VALUE
------------------------------------ --------------------------------- ------------------------------
db_recovery_file_dest                string                            +DSDATA
db_recovery_file_dest_size           big integer                       20G
SQL> select substr(name,1,30) name,space_limit as quota,space_used as used,space_reclaimable as reclaimable,number_of_files as files from v$recovery_file_dest;

NAME                      QUOTA               USED        RECLAIMABLE   FILES
------------ ------------------ ------------------ ------------------ -------
+DSDATA          21474836480.00     20779630592.00        50331648.00   44.00

SQL> select * from v$flash_recovery_area_usage;

FILE_TYPE                                                    PERCENT_SPACE_USED PERCENT_SPACE_RECLAIMABLE NUMBER_OF_FILES
------------------------------------------------------------ ------------------ ------------------------- ---------------
CONTROL FILE                                                                .08                         0               1
REDO LOG                                                                  15.03                         0               6
ARCHIVED LOG                                                                  0                         0               0
BACKUP PIECE                                                                .23                       .23               3
IMAGE COPY                                                                    0                         0               0
FLASHBACK LOG                                                             81.42                         0              34
FOREIGN ARCHIVED LOG                                                          0                         0               0


大过年的备份出错,这是不让休息的节奏啊,请大家帮忙看看,这种情况怎么处理?
招聘 : 技术支持/维护
论坛徽章:
5
2010新春纪念徽章
日期:2010-03-01 11:20:052011新春纪念徽章
日期:2011-02-18 11:43:33ITPUB十周年纪念徽章
日期:2011-11-01 16:24:51懒羊羊
日期:2015-03-04 14:52:112015年新春福章
日期:2015-03-06 11:58:18
2#
 楼主| 发表于 2015-2-16 14:28 | 只看该作者
过年了,自己解决吧
At the time of writing Bug 17292788 is still under investigation with Development.

Workaround:

RMAN>catalog start with '<path>';

or

Set DIAG_ADR_ENABLED=FALSE in the sqlnet.ora file of the rman client.

使用道具 举报

回复
论坛徽章:
40
2014年新春福章
日期:2014-02-18 16:43:09喜羊羊
日期:2015-05-18 16:24:25慢羊羊
日期:2015-06-12 13:08:22暖羊羊
日期:2015-07-02 16:06:20暖羊羊
日期:2015-07-06 16:28:55狮子座
日期:2015-07-29 17:14:43摩羯座
日期:2015-09-02 13:58:47白羊座
日期:2015-09-08 10:39:06天枰座
日期:2015-09-17 21:41:53摩羯座
日期:2015-10-29 21:07:02
3#
发表于 2015-2-17 09:33 | 只看该作者
qinwen740 发表于 2015-2-16 14:28
过年了,自己解决吧
At the time of writing Bug 17292788 is still under investigation with Developmen ...

感谢分享

使用道具 举报

回复

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

TOP技术积分榜 社区积分榜 徽章 团队 统计 知识索引树 积分竞拍 文本模式 帮助
  ITPUB首页 | ITPUB论坛 | 数据库技术 | 企业信息化 | 开发技术 | 微软技术 | 软件工程与项目管理 | IBM技术园地 | 行业纵向讨论 | IT招聘 | IT文档
  ChinaUnix | ChinaUnix博客 | ChinaUnix论坛
CopyRight 1999-2011 itpub.net All Right Reserved. 北京盛拓优讯信息技术有限公司版权所有 联系我们 未成年人举报专区 
京ICP备16024965号-8  北京市公安局海淀分局网监中心备案编号:11010802021510 广播电视节目制作经营许可证:编号(京)字第1149号
  
快速回复 返回顶部 返回列表