
oracle 等待事件
LinsFay
笨鸟飞行中
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
direct path read和direct path write等待事件
direct path read等待事件direct path read和direct path write (直接路径读/写)事件发生在绕过SGA缓冲区高速缓存,执行PGA的直接读或写时的等待。直接路径读写 表示排序不在内存中,而是在磁盘上,采用自动PGA调优,在很大程度上能解决此类问题。另外就是调优sql语句本身#http://www.askmaclean.com/archives转载 2013-12-08 15:38:24 · 1159 阅读 · 0 评论 -
latch free等待事件
闩是一种内部串行机制,可以理解为一种轻量级的锁,用来保护SGA中的共享数据。关于闩等待,最重要的两种闩是 latch:shared pool latch 和 latch:cache buffers LRU chainlatch: shared pool等待事件#http://www.askmaclean.com/archives/latch-shared-pool.转载 2013-12-08 16:40:15 · 866 阅读 · 0 评论 -
log buffer space、log file switch、log file sync
log buffer spacelog buffer space 等待事件表示某个进程等待日志缓冲区中的空间。不管是日志缓冲区过小,还是重做信息写产生过快。均使日志写入经常不能将其写入到重做日志缓冲区中。查看log buffer大下。如果过小,适当增大size。如果log buffer已经足够大,则要考虑是否存在I/O争用log file switchlog f原创 2013-12-08 17:17:35 · 1709 阅读 · 0 评论 -
oracle 重要的等待事件--buffer busy waits
buffer busy waits等待事件#--转载http://www.askmaclean.com/archives/buffer-busy-waits.htmlbuffer busy waitsWait occurs when a session attempts to access a block in memory, is denied and must wait unt转载 2013-12-08 15:06:52 · 1266 阅读 · 0 评论 -
free buffer waits等待事件
free buffer waits等待事件#www.askmaclean.com/archives/direct-path-write.htmlfree buffer waits等待时间发生在数据库写进程慢时,数据库写进程不能满足维护缓冲区高速缓存的请求。高速缓存中等待写入磁盘的脏数据的数目比数据库写入进程每批次写入的数目大,会话必须等待,因为会话不能获得供写入的可用缓冲区。解决:转载 2013-12-08 15:50:51 · 969 阅读 · 0 评论 -
library cache latch等待事件
library cache latch等待事件#http://www.askmaclean.com/archives/library-cache-latch.htmlThis latch serializes access to the objects in the library cache. Every time a SQL statement, a PL/SQL block or转载 2013-12-08 17:23:36 · 814 阅读 · 0 评论 -
等待事件概述
1 等待事件概述Oracle的等待事件是衡量oracle运行状况的重要依据及指标.等待事件的概念是在Oracle7.0.1.2中引入的,大致有100个等待事件。在Oracle 8.0中这个数目增加到了大约150个,在Oracle8i中大约有200个事件,在Oracle9i中大约有360个等待事件。主要有两种类别的等待事件,即空闲(idle)等待事件和非空闲(non-idle)等待事件。转载 2013-12-08 22:12:16 · 1331 阅读 · 0 评论 -
db file scattered read等待事件
db file scattered read等待事件# http://www.askmaclean.com/archives/db-file-scattered-read.htmlWaits on this event indicate the statement is performing a full table scan or an index range scan. This转载 2013-12-08 15:10:36 · 801 阅读 · 0 评论 -
db file sequential read等待事件
db file sequential read等待事件#http://www.askmaclean.com/archives/db-file-sequential-read.htmldb file sequential read 表示将单块读入连续的内存中Waits on ‘db file sequential read’ normally occur during转载 2013-12-08 15:30:09 · 903 阅读 · 0 评论