[Oracle]发生 ora-06502 RMAN 在对 catalog DB 同期时出错的调查方法

简介:
Catalog DB resync error:

1, setting on the server that starts the RMAN client

$ Export EVENT_10928 = 1
$ Rman target <username> / <password> @ <connection descriptor> catalog <username> / <password> debug trace = / tmp / rmanDebug.trc log = / tmp / rmanLog.txt

RMAN> sql "alter session set tracefile_identifier = '' rman - 10046 ''" ";
RMAN> sql "alter session set events '' 10046 trace name context forever, level 12 ''" "
RMAN> sql "alter session set events '' 6502 trace name errorstack level 3 ''";
RMAN> debug all level = 15

2, With the RMAN connection of the target DB held, the setting of the catalog DB

SQL> alter system set events '10046 trace name context forever, level 12';
SQL> alter system set events '6502 trace name errorstack level 3';

3, Reproduce the error on the target DB side.

RMAN> resync catalog;
RMAN> exit;

4, Cancel EVENT_10928 on the server that starts the RMAN client

$ Unset EVENT_10928

5, Cancel event setting on the catalog DB side.

SQL> alter system set events '10046 trace name context off';
SQL> alter system set events '6502 trace name errorstack off';

The file generated is as follows:

■ Target DB side:
<SID> _ora _ <SPID> _rman _ 10046.trc output to user_dump_dest

■ Catalog DB side:
<SID> _ora _ <SPID> .trc output to user_dump_dest

■ Server that started RMAN client:
/tmp/rmanDebug.trc
/tmp/rmanLog.txt

Note: The information in EVENT_10928 is output to rmanLog.txt.







本文转自健哥的数据花园博客园博客,原文链接:http://www.cnblogs.com/gaojian/p/7623586.html,如需转载请自行联系原作者

目录
相关文章
|
26天前
|
SQL Oracle 关系型数据库
Oracle数据库优化方法
【10月更文挑战第25天】Oracle数据库优化方法
33 7
|
2月前
|
Oracle 安全 关系型数据库
Oracle数据恢复—Oracle数据库误删除的数据恢复方法探讨
删除Oracle数据库数据一般有以下2种方式:delete、drop或truncate。下面针对这2种删除oracle数据库数据的方式探讨一下oracle数据库数据恢复方法(不考虑全库备份和利用归档日志)。
|
4月前
|
Oracle 安全 关系型数据库
|
4月前
|
存储 Oracle 关系型数据库
|
4月前
|
存储 Oracle 关系型数据库
关系型数据库Oracle运行RMAN脚本
【7月更文挑战第23天】
52 4
|
4月前
|
SQL Oracle 关系型数据库
关系型数据库Oracle设置 RMAN 环境:
【7月更文挑战第25天】
71 2
|
4月前
|
监控 Oracle 算法
|
4月前
|
SQL Oracle 关系型数据库
关系型数据库Oracle结束 RMAN 会话:
【7月更文挑战第25天】
87 1
|
4月前
|
Oracle 关系型数据库 数据库
关系型数据库Oracle编写RMAN脚本
【7月更文挑战第23天】
44 2
|
4月前
|
Oracle 关系型数据库 数据库
关系型数据库Oracle执行RMAN脚本
【7月更文挑战第22天】
75 2