Oracle 视图 DBA_HIST_CR_BLOCK_SERVER 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图是指一个可以以表格形式显示的查询结果集,它通常也被称为虚拟表,无需重新创建表或者定义数据,用户可以通过视图对同一个或多个表中的数据进行查询。
The DBA_HIST_CR_BLOCK_SERVER视图,主要查看被阻塞服务器的历史信息,可以用以下查询来使用它:
SELECT timestamp,server_name,blocks,fixed,failures
FROM dba_hist_cr_block_server;
这会显示时间戳,服务器名称,被阻塞的行数,已经解决的阻塞和失败的阻塞的数量。
官方英文解释
DBA_HIST_CR_BLOCK_SERVER
displays historical statistics on the Global Cache Service processes (LMS) used in cache fusion.
This view contains snapshots of V$CR_BLOCK_SERVER
.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Unique snapshot ID |
|
|
|
Database ID for the snapshot |
|
|
|
Instance number for the snapshot |
|
|
Number of CR blocks served due to remote CR block requests |
|
|
|
Number of current blocks served due to remote CR block requests
|
|
|
|
Number of current or CR requests for data blocks |
|
|
|
Number of CR requests for undo blocks |
|
|
|
Number of CR requests for undo segment header blocks
|
|
|
|
Number of requests for which no changes were rolled out of the block returned to the requesting instance |
|
|
|
Number of requests for which changes were rolled out of the block returned to the requesting instance, and only the requesting transaction can use the resulting CR block |
|
|
|
Number of requests for which changes were rolled out of the block returned to the requesting instance. Only zero-XID transactions can use the block. |
|
|
|
Number of requests for which the requesting instance had to read the requested block from disk |
|
|
|
Number of requests that failed; the requesting transaction must reissue the request |
|
|
|
Number of times an instance receiving a request has down-converted an X lock on a block because it was not modifying the block |
|
|
|
Number of times the log has been flushed by an LMS process |
|
|
|
Number of times the log has been flushed by an LMS process |
|
|
|
Number of requests for which the server had to fabricate a CR block |
|
|
|
Number of times the light-work rule was evoked. This rule prevents the LMS processes from going to disk while responding to CR requests for data, undo, or undo segment header blocks. This rule can prevent the LMS process from completing its response to the CR request. |
|
|
|
Number of times an error was signalled by an LMS process |
|
|
|
The database ID of the PDB for the sampled session |
|
|
|
The ID of the container that
|
See Also:
“V$CR_BLOCK_SERVER”