- 最后登录
- 2015-2-10
- 在线时间
- 32 小时
- 威望
- 11
- 金钱
- 188
- 注册时间
- 2012-6-27
- 阅读权限
- 10
- 帖子
- 18
- 精华
- 0
- 积分
- 11
- UID
- 540
|
3#
发表于 2015-1-6 10:26:23
刘老大,是这样做trace吗?
SQL> alter session set events '10200 trace name context forever, level 10';
Session altered.
SQL> update myusers set user_id=1;
37 rows updated.
SQL> commit;
Commit complete.
不过测试的时候还有一个情况
会话1
select obj#,STATISTIC_NAME,value from V$SEGMENT_STATISTICS where obj#=270471 and STATISTIC_NAME='db block changes';
OBJ# STATISTIC_NAME VALUE
---------- ------------------------------ ----------
270471 db block changes 224
SQL> update myusers set user_id=1;
37 rows updated.
会话2
select * from myusers;
会话1
SQL> commit;
Commit complete.
SQL> select obj#,STATISTIC_NAME,value from V$SEGMENT_STATISTICS where obj#=270471 and STATISTIC_NAME='db block changes';
OBJ# STATISTIC_NAME VALUE
---------- ------------------------------ ----------
270471 db block changes 288
增加了64, |
|