Oracle 视图 V$LOGMNR_STATS 官方解释,作用,如何使用详细说明
本站中文解释
V$LOGMNR_STATS视图是Oracle中LogMiner的系统视图,它显示了LogMiner进程在特定时刻执行时的统计信息。LogMiner于9i中引进,是用来分析或检查日志,提供语言支持,尤其是支持SQL语言,并且可以分析历史日志,满足审计分析的需要。
V$LOGMNR_STATS视图存储了LogMiner当前正在执行或已经完成的信息,包括当前正在开展的分析的日志文件的名称以及相应行的数量,总记录数,commit记录数和其它统计信息。
如何使用V$LOGMNR_STATS视图:
1、通过V$LOGMNR_STATS视图可以查看LogMiner的状态:
SELECT username, to_char(start_time,’YYYY/MM/DD HH24:MI:SS’) START_TIME,status,
scn, to_char(end_scn,’FM99999999999999′) END_SCN
FROM v$logmnr_status WHERE username=’LOGMNR_R’;
2、查询具体日志文件分析情况,以及总记录数、commit记录数等:
SELECT LFG.member filename,STS.start_scn,STS.end_scn,STS.stat_name, STS.records, STS.applied_scn_record FROM
v$logmnr_stats STS,V$LOGFILE_GROUP LFG WHERE STS.group_number=LFG.group#;
官方英文解释
V$LOGMNR_STATS
displays the activity currently being performed by the active LogMiner persistent sessions.
Column | Datatype | Description |
---|---|---|
|
|
Unique identifier for the LogMiner persistent sessions |
|
|
Name of the LogMiner statistic, state, or status, including:
|
|
|
The corresponding metric value |
|
|
The ID of the container to which the data pertains. Possible values include:
|