博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gc buffer busy等待事件
阅读量:4614 次
发布时间:2019-06-09

本文共 1160 字,大约阅读时间需要 3 分钟。

This wait, also known as global cache buffer busy prior to Oracle 10g, specifies the time the remote instance locally spends accessing the requested data block. This wait event is very similar to the buffer busy waits wait event in a single-instance database. Problem High wait times on this event are often the result of: Hot Blocks - multiple sessions may be requesting a block that is either not in buffer cache or is in an incompatible mode. Inefficient Queries- as with the gc cr request wait event, the more blocks requested from the buffer cache the more likelihood of a session having to wait for other sessions. Solutions Deleting some of the hot rows and re-inserting them back into the table may alleviate a Hot Block problem. Most of the time the rows will be placed into a different block and reduce contention on the block. The DBA may also need to adjust the pctfree and/or pctused parameters for the table to ensure the rows are placed into a different block. Tuning queries to access fewer blocks in buffer cache will often result in less contention for the same block.

转载于:https://www.cnblogs.com/macleanoracle/archive/2013/03/19/2967904.html

你可能感兴趣的文章
HTML5开发:原理与实现
查看>>
pip安装问题
查看>>
Mysql 出现Table‘xxx’is read only问题
查看>>
欧几里得&扩展欧几里得算法
查看>>
Block使用的注意事项
查看>>
HDU1700:Points on Cycle
查看>>
8个实用的Linux下Bash命令提示行(转)
查看>>
Python常用模块-shutil高级文件处理模块
查看>>
css hack
查看>>
POJ-1273Drainage Ditches(网络流入门题,最大流)
查看>>
桥接模式
查看>>
thrift 学习
查看>>
9. iptables 配置
查看>>
vc多线程编程
查看>>
TCP与UDP的异同(服务端接收数据,客户端发送数据)
查看>>
OkHttp 官方wiki 使用案例 MD
查看>>
【版本】API NDK 系统 分辨率 统计
查看>>
.net选择数据库表\列导出数据
查看>>
MVVM(Model-View-View-Model)简单分析(及代码示例)
查看>>
Mac 下 android/iOS https抓包
查看>>