Chinaunix首页 | 论坛 | 博客
  • 博客访问: 491187
  • 博文数量: 130
  • 博客积分: 3581
  • 博客等级: 中校
  • 技术积分: 1200
  • 用 户 组: 普通用户
  • 注册时间: 2005-02-18 10:51
文章分类

全部博文(130)

文章存档

2016年(1)

2015年(8)

2014年(6)

2013年(2)

2012年(9)

2011年(16)

2010年(5)

2009年(4)

2008年(2)

2007年(6)

2006年(50)

2005年(21)

我的朋友

分类: Oracle

2011-12-21 11:48:11

SQL>  select wait_class,name from v$event_name  where name = 'enq: FB - contention';
WAIT_CLASS                                                       NAME
---------------------------- ----------------------------------------------------------------
Other                                                            enq: FB - contention
 
SQL> select name,PARAMETER1,PARAMETER2,PARAMETER3 from v$event_name where name = 'enq: FB - contention';
NAME                             PARAMETER1                       PARAMETER2                       PARAMETER3
-------------------------------- -------------------------------- -------------------------------- --------------------------------
enq: FB - contention             name|mode                        tablespace #                     dba
 
 
 
"This is the Format Block enqueue, used only when data blocks are using ASSM (Automatic Segment Space Management or bitmapped freelists).  As we might expect, common FB enqueue relate to buffer busy conditions, especially since ASSM tends to cause performance problems under heavily DML loads."

 

"well the format block enqueue ("enq: fb contention") is related to grabbing
new blocks in ASSM tablespaces, during an insert operation for example. It
might be a good idea at this point to find out what the 'query' is that you
are actually doing and if it is happening in parallel etc. Incidentally are
both of these queries on the one system, or is one PROD and one UAT?"

http://www.freelists.org/post/oracle-l/Execution-time-in-SHARED-SERVER-vs-DEDICATED-SERVER-RAC-10gR2,12

 


 
阅读(5625) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~