FAQ
2009-08-11
数据字典视图之:V$LATCH_CHILDREN 结构
V$LATCH视图在选取X$KSLLT记录时,进行了Group By及SUM运算,从而得出了一个汇总信息,而V$LATCH_CHILDREN视图并不进行汇总运算,所以也就显示了子Latch的相关信息,以下结构信息来自Oracle database 10gR2:
-The End-
SELECT t.inst_id, t.addr, t.kslltnum, t.kslltcnm, n.kslldlvl, n.kslldnam,这是原始的,全部的数据输出!
n.kslldhsh, t.kslltwgt, t.kslltwff, t.kslltwsl, t.kslltngt, t.kslltnfa,
t.kslltwkc, t.kslltwth, t.ksllthst0, t.ksllthst1, t.ksllthst2,
t.ksllthst3, t.ksllthst4, t.ksllthst5, t.ksllthst6, t.ksllthst7,
t.ksllthst8, t.ksllthst9, t.ksllthst10, t.ksllthst11, t.kslltwtt
FROM x$ksllt t, x$kslld n
WHERE t.kslltcnm > 0 AND t.kslltnum = n.indx;
-The End-
历史上的今天
- 2006-08-11 首届杰出数据库工程师评选终选时间表
- 2006-08-11 Google的Web Clips终于支持自添加RSS
- 2006-08-11 备份的控制文件和新的数据文件
- 2006-08-11 关于控制文件与数据文件头信息的说明
- 2006-08-11 江湖传闻-Blogspot再次解封
现在还不太懂,还没有研究得这么深,要经常来这里学习了~~