不遵守Oracle 11gR2升级步骤的后果

摘自: ORA-00600 [rwoirw: check ret val] After 11.2.0.4 Upgrade (Doc ID 1910573.1)


APPLIES TO:

Oracle Database - Enterprise Edition - Version 11.2.0.4 and later
Information in this document applies to any platform.

SYMPTOMS

The following error is received after an upgrade to 11.2.0.4:
ORA-00600: internal error code,arguments: [rwoirw: check ret val],[],[]

You find some or all of the following function codes in the 'Call Stack' portion of the incident trace file:
qertqostart qerpxslavefetch qerpxfetch opiexe kpoal8 opiodr

CHANGES

Upgrade to 11.2.0.4.

CAUSE

This can occur if the optimizer statistics are stale.

SOLUTION

Cross-check for any information about this while executing Pre-Upgrade Information Tool (utlu111i.sql)

Next,try to collect the data dictionary and fixed objects stats using following procedures:

sql> exec dbms_stats.gather_dictionary_stats;

sql> exec dbms_stats.gather_fixed_objects_stats;

Follow the steps mentioned inNote: 837570.1Complete Checklist for Manual Upgrades to 11gR2,and be sure to run the data dictionary and fixed objects statistics.
When upgrading to Oracle Database 11g Release 2 (11.2),optimizer statistics are collected for dictionary tables that lack statistics. This procedure gathers statistics
for dictionary schemas 'SYS','SYSTEM' and schemas of RDBMS components.

REFERENCES

相关文章

数据库版本:11.2.0.4 RAC(1)问题现象从EM里面可以看到,在23号早上8:45~8:55时,数据库等待会话暴增...
(一)问题背景最近在对一个大约200万行数据的表查看执行计划时,发现存在异常,理论上应该返回100多万...
(一)删除备份--DELETE命令用于删除RMAN备份记录及相应的物理文件。当使用RMAN执行备份操作时,会在RM...
(1)DRA介绍 数据恢复顾问(Data Recovery Advise)是一个诊断和修复数据库的工具,DRA能够修复数据文...
RMAN(Recovery Manager)是Oracle恢复管理器的简称,是集数据库备份(backup)、修复(restore)和恢复...
(1)备份对象 可以使用RMAN进行的备份对象如下: --整个数据库:备份所有的数据文件和控制文件; --数...