博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Latches and Tuning:Latches
阅读量:5792 次
发布时间:2019-06-18

本文共 1179 字,大约阅读时间需要 3 分钟。

1. Query the V$FIXED_TABLE to determine the V$ views that provide latch information.
a. Execute the following query:> select name from v$fixed_table where name like 'V$LATCH%';
2. Remember that there are 14 levels of latches, numbered 0 – 13.
a. Take a look at three common latches and their level by executing the following query:> select name, level# from v$latch where name in ('cache buffers chain','library cache','redo allocation'); You may or may not see each of these latches listed depending upon the state and activity on your database.
3. Each parent and child latch has one instance in X$KSLLT.
a. Execute the following query to view a KSLLT structure for a latch:> select v$latch_parent.addr,v$latch_parent.level#,v$latch_parent.latch#, v$latch_parent.name from v$latch_parent,x$ksllt where v$latch_parent.addr = x$ksllt.addr; You should at least see information for the ‘latch wait list’ latch. However, your results will vary depending upon the state and activity of your database.

4. Using the latch# from the previous query, you can query the X$KSLLD table to see the array of latch descriptors

.本文转自maclean_007 51CTO博客,原文链接:http://blog.51cto.com/maclean/1277673

转载地址:http://wfzfx.baihongyu.com/

你可能感兴趣的文章
虚拟机网络不通
查看>>
spring源码-自定义标签-4
查看>>
软件测试职业规划
查看>>
如何用Fiddler对Android应用进行抓包
查看>>
iOS为所需要的视图添加模糊效果--UIVisualEffectView
查看>>
Kibana登录认证设置
查看>>
volley 应用 GET POST请求 图片异步加载
查看>>
BZOJ-4325: NOIP2015 斗地主 (搜索神题)
查看>>
HDU-1222 Wolf and Rabbit (欧几里得定理)
查看>>
Camera Calibration 相机标定:原理简介(五)
查看>>
ClassCastException:ColorDrawable cannot be cast to RoundRectDrawableWithShadow
查看>>
ehcache实例
查看>>
Linux多线程与同步
查看>>
MS CRM 2011的自定义和开发(9)——编程模型介绍
查看>>
MySQL使用说明
查看>>
python 匿名函数
查看>>
设置UITableViewCell右侧的箭头
查看>>
Android Fragment 深度解析
查看>>
Codeforces Round #455 (Div. 2)E. Coprocessor[dfs]
查看>>
JavaScript - Iterable和遍历
查看>>