码迷,mamicode.com
首页 > 数据库 > 详细

关于DBA_TAB_MODIFICATIONS数据字典中数据无法查询的问题

时间:2014-06-27 06:57:16      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:dba   tab   modifications   

今天收到一个客户请求,客户在查数据字典时,发现下面的现象。


SQL> select table_name from dba_tab_modifications where table_name=‘STAT_TABLE‘;

    

no rows selected

    

SQL> select table_name from dba_tab_modifications where table_name like ‘%STAT_TABLE‘;

    

TABLE_NAME

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

STAT_TABLE

STAT_TABLE


在MOS里面查询之后,找到下面这个错误。最终证明这是Oracle的一个错误。

Bug 13984324 - wrong result with UNION ALL of similar queries / in DBA_TAB_MODIFICATIONS (Doc ID 13984324.8)


错误发生的版本:11.2.0.4 

                 11.2.0.3

                 11.2.0.2


错误解决的版本:12.1.0.1


其它解决方法:

"_optimizer_join_factorization"=false

SQL> alter session set "_optimizer_join_factorization" = false;


SQL> select table_name from dba_tab_modifications where table_name like ‘STAT_TABLE‘;

    

TABLE_NAME

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

STAT_TABLE

STAT_TABLE


关于DBA_TAB_MODIFICATIONS数据字典中数据无法查询的问题,布布扣,bubuko.com

关于DBA_TAB_MODIFICATIONS数据字典中数据无法查询的问题

标签:dba   tab   modifications   

原文地址:http://8373068.blog.51cto.com/8363068/1431151

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