码迷,mamicode.com
首页 > 其他好文 > 详细

偶遇问题之ORA-00600: [15851], [3], [2], [1], [1]

时间:2015-11-16 15:58:08      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:数据库   error   600   

周六一台数据库报ora600,查了下mos,问题不大,记录一下。

ORA-00600: internal error code, arguments: [15851], [3], [2], [1],[1], [], [], []
ORA-00600: internal error code, arguments: [15851], [3], [2], [1],[1], [], [], []
ORA-06512: at "SYS.DBMS_STATS", line 21275
 
It matches thisexactly:

ORA-600 [15815] When Using DBMS_STATS On TableWith Function Based Index (Doc ID 1092675.1)

But it doesn‘t talk about any workaround. Thesolution is to apply a patch or upgrade to 11.2.0.2.

Interestingly, this note

ORA-600: [15851] when Gathering Statistics(Doc ID 1111618.1)

seems to be about the same problem, and inaddition to a patch, it also suggests a workaround:

SQL> select index_name, partition_name,num_rows, from dba_ind_partitions where status=‘UNUSABLE‘;
SQL> ALTER INDEX <owner>.<name>REBUILD;
SQL> ANALYZE TABLE<owner>.<table_name> COMPUTE/ESTIMATE STATISTICS;


本文出自 “刚刚出壳的小鸟” 博客,请务必保留此出处http://qhd2004.blog.51cto.com/629417/1713071

偶遇问题之ORA-00600: [15851], [3], [2], [1], [1]

标签:数据库   error   600   

原文地址:http://qhd2004.blog.51cto.com/629417/1713071

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!