Oracle 视图 V$LCR_CACHE 官方解释,作用,如何使用详细说明
本站中文解释
V$LCR_CACHE视图用于显示和管理有关LogMiner传输缓存的相关信息。LogMiner当增量对象或其他数据改变时,可以根据V$LCR_CACHE视图确定有哪些传输信息需要推送到客户端。
使用方法:
查看信息:
SELECT * FROM V$LCR_CACHE;
清空/删除缓存:
DELETE FROM V$LCR_CACHE WHERE SOURCE_ID = &SOURCE_ID; //SOURCE_ID 为源ID号
官方英文解释
V$LCR_CACHE
displays information about entries in the logical change record (LCR) cache.
Column | Datatype | Description |
---|---|---|
|
|
Indicates whether the LCR is |
|
|
Component name |
|
|
Component type. Possible values:
|
|
|
Number of columns in the LCR |
|
|
Number of available LCRs |
|
|
Total request count |
|
|
Cache hit count |
|
|
Hit count from an alternate LCR cache entry |
|
|
Cache purge count |
|
|
Session ID of the component process |
|
|
Session serial number of the component process |
|
|
The ID of the container to which the data pertains. Possible values include:
|
Note:
This view is available starting with Oracle Database 21c.