Home  >  Article  >  Database  >  Logminer日志挖掘范例

Logminer日志挖掘范例

WBOY
WBOYOriginal
2016-06-07 17:35:171071browse

1、 明确时间范围 根据时间确定需要挖据日志的个数,将日志分别加入脚本中。 2、 编写logminer脚本 execute dbms_logmnr.add_l

根据时间确定需要挖据日志的个数,将日志分别加入脚本中。

 

 

 

EXECUTE DBMS_LOGMNR.START_LOGMNR(OPTIONS => DBMS_LOGMNR.DICT_FROM_ONLINE_CATALOG);

每查看一次V$LOGMNR_CONTENTS,,dbms_logmnr包都会去挖掘一次归档文件,所以最好复制一份此表;

退出,视图内相应数据将会清除。因此,为了方便查

询,可以通过创建临时表将视图中的数据保存:

 

 

 

在V$LOGMNR_CONTENTS中username有时候会显示“UNKNOWN”状态,说明是其他语句调用的关系,可以根据session#和serial#去ash

或者DBA_HIST_SESSION_HISTORY视图中查询信息;

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn