Oracle 视图 DBA_HIST_LATCH_MISSES_SUMMARY 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_HIST_LATCH_MISSES_SUMMARY报告的是系统到目前为止运行的汇总锁等待次数。这些等待次数将用于确定是否存在某种锁定冲突,以及系统可能在特定的锁定保持时间内存在何种瓶颈。不同类型的锁定过程(如读锁、写锁等)也有不同的等待时长,这可以帮助用户更好地分析和诊断因锁而导致的系统性能问题。
使用DBA_HIST_LATCH_MISSES_SUMMARY视图的步骤如下:
1.连接Oracle数据库,登陆到一个特定的用户帐户。
2.使用带有查询条件的SELECT语句查询DBA_HIST_LATCH_MISSES_SUMMARY视图,以获取所需的汇总记录。
3.使用有选择性的GROUP BY语句对DBA_HIST_LATCH_MISSES_SUMMARY视图中的数据进行分组,以获取不同类型的锁定汇总信息。
4.使用带有ORDER BY语句的SELECT语句来根据需要对DBA_HIST_LATCH_MISSES_SUMMARY视图中的结果进行排序和筛选。
5.关闭Oracle数据库。
官方英文解释
DBA_HIST_LATCH_MISSES_SUMMARY
displays historical summary statistics about missed attempts to acquire a latch.
This view contains snapshots of V$LATCH_MISSES
.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Unique snapshot ID |
|
|
| Database ID for the snapshot |
|
|
| Instance number for the snapshot |
|
|
| Latch name of a parent latch |
|
|
| Location that attempted to acquire the latch |
|
| Number of times that no-wait acquisition of the latch failed | |
|
| Number of times that acquisition attempts caused sleeps | |
|
| Number of times a waiter slept | |
|
| The database ID of the PDB for the sampled session | |
|
| The ID of the container that
|
See Also:
“V$LATCH_MISSES”
编辑:广州明生医药有限公司
标签:视图,语句,系统,不同类型,的是