首页 > 代码库 > 关于DBA_TAB_MODIFICATIONS数据字典中数据无法查询的问题
关于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