- 最后登录
- 2023-8-16
- 在线时间
- 1686 小时
- 威望
- 2135
- 金钱
- 50532
- 注册时间
- 2011-10-12
- 阅读权限
- 200
- 帖子
- 5207
- 精华
- 39
- 积分
- 2135
- UID
- 2
|
2#
发表于 2012-3-9 21:51:41
v$log 其信息来源于 x$kccle 和 x$kccrt
x$kccle—- [K]ernel [C]ache [C]ontrolfile management [L]ogfil[E] record
X$KCCRT - [R]edo [T]hread Information
Gv$LOG 在10.2.0.1中的定义- select le.inst_id,
- le.lenum,
- le.lethr,
- le.leseq,
- le.lesiz * le.lebsz,
- ledup,
- decode(bitand(le.leflg, 1), 0, 'NO', 'YES'),
- decode(bitand(le.leflg, 24),
- 8,
- 'CURRENT',
- 16,
- 'CLEARING',
- 24,
- 'CLEARING_CURRENT',
- decode(sign(leseq),
- 0,
- 'UNUSED',
- decode(sign((to_number(rt.rtckp_scn) -
- to_number(le.lenxs)) * bitand(rt.rtsta, 2)),
- -1,
- 'ACTIVE',
- 'INACTIVE'))),
- to_number(le.lelos),
- to_date(le.lelot, 'MM/DD/RR HH24:MI:SS', 'NLS_CALENDAR=Gregorian')
- from x$kccle le, x$kccrt rt
- where le.ledup != 0
- and le.lethr = rt.rtnum
- and le.inst_id = rt.inst_id
复制代码 |
|