最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

ORA-32690:散列表基础结构内存不足

来源:动视网 责编:小采 时间:2020-11-09 12:44:09
文档

ORA-32690:散列表基础结构内存不足

ORA-32690:散列表基础结构内存不足:ORA-32690: 散列表基础结构内存不足 [Oracle@sdw0 ~]$ oerr ora 32690 32690, 00000, Hash Table Infrastructure ran out of me ORA-32690: 散列表基础结构内存不足 [Oracle@sdw0 ~]$ oerr ora 32690 32690, 0
推荐度:
导读ORA-32690:散列表基础结构内存不足:ORA-32690: 散列表基础结构内存不足 [Oracle@sdw0 ~]$ oerr ora 32690 32690, 00000, Hash Table Infrastructure ran out of me ORA-32690: 散列表基础结构内存不足 [Oracle@sdw0 ~]$ oerr ora 32690 32690, 0


ORA-32690: 散列表基础结构内存不足 [Oracle@sdw0 ~]$ oerr ora 32690 32690, 00000, Hash Table Infrastructure ran out of me

ORA-32690: 散列表基础结构内存不足

[Oracle@sdw0 ~]$ oerr ora 32690
32690, 00000, "Hash Table Infrastructure ran out of memory"
// *Cause: Not enough memory.
// *Action: Increase memory.

This is a known bug on database version 10.2.0.3. The bug is fixed in 11.2 release.

Recommended solution always to be on the latest patchset or even 11.1.0.6 where there is one off backport for several platforms .

The bug also has a one off on top of 10.2.0.4, if you are not able to be on top of 10.2.0.4 for the time being, so our option now is to resolve the issue on top of 10.2.0.3

No one off on top of 10.2.0.3 for Solaris platform however the good news that there is a merge Patch 6907160 MERGE LABEL REQUEST ON TOP OF 10.2.0.3 FOR BUGS 71770 71515, available to Solaris platform.

There are also the available workarounds
1. Disable Hash group-by by setting “_gby_hash_aggregation_enabled” to FALSE in init.ora
2. Use a NO_USE_HASH_AGGREGATION hint in your statements

原因分析:

解决方法:

1.增加PGA的pga_aggregate_target的大小。

2.Disable HASH GROUP BY operations bysetting the parameter _gby_hash_aggregation_enabled to FALSE:

SQL> alter session set"_gby_hash_aggregation_enabled" = false;

or

SQL> alter systemset "_gby_hash_aggregation_enabled" = falsescope=spfile;

A hard parse tothe statement needs to be performed, preferably to flush the Shared Pool aftersetting this workaround and then re-run the statement.

--要使修改生效,需要执行一次硬解析,所以可以选择flush share pool,,然后执行SQL。

3.不使用hash join:select /*+ NO_USE_HASH_AGGREGATION*/.....

文档

ORA-32690:散列表基础结构内存不足

ORA-32690:散列表基础结构内存不足:ORA-32690: 散列表基础结构内存不足 [Oracle@sdw0 ~]$ oerr ora 32690 32690, 00000, Hash Table Infrastructure ran out of me ORA-32690: 散列表基础结构内存不足 [Oracle@sdw0 ~]$ oerr ora 32690 32690, 0
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top