- 最后登录
- 2023-8-16
- 在线时间
- 1686 小时
- 威望
- 2135
- 金钱
- 50532
- 注册时间
- 2011-10-12
- 阅读权限
- 200
- 帖子
- 5207
- 精华
- 39
- 积分
- 2135
- UID
- 2
|
3#
发表于 2012-4-5 18:39:59
ORA-00600: internal error code, arguments: [733], [290424544], [top call heap], [], [], [], [], []
700 vos Memory
top call heap argument 290424544 = 276MB
ORA-600 [733] "memory request size is too big for this port (o/s)"
ERROR:
Format: ORA-600 [733] [a]
VERSIONS:
versions 7.0 to 9.2
DESCRIPTION:
When allocating an extent in the PGA, if the minimum size requested is
greater than what is allowed for this port, ORA-600 [733] is reported.
This is a Program Global Area (PGA) heap/memory allocation error.
ARGUMENTS:
Arg a The minimum extent size requested, in bytes.
Arg b comment supplied by the caller.
FUNCTIONALITY:
MEMORY IMPLEMENATION
IMPACT:
PROCESS FAILURE
NON CORRUPTIVE - No corruption to underlying data.
SUGGESTIONS:
If receiving this during a query with complex JOIN, for example, consider
lowering sort_area_size or hash_area_size (if hash_join_enabled = true)
and rerun the query. This will reduce the PGA memory requirements and may
clear the problem.
可能由Server Process分配大Extent的 PGA 内存引起, 建议你上传TRACE文件 "/oracle/admin/zypw/udump/zypw1_ora_17725.trc"
调整SQL语句对PGA的使用 如HASH JOIN、SORT,或调整 PGA/OS参数解决该问题 |
|