分析資料庫日誌(LogMiner)
Logminer可以對歸檔日誌進行分析
1、查詢資料庫歸檔日誌序號
SQL>alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss';
SQL>select sequence#,first_time from v$log_history order by first_time desc;
2、確定要分析的日誌
SQL>select first_time,name from v$archived_log order by first_time desc;
3、使用logminer分析資料
SQL> execute dbms_logmnr.add_logfile(logfilename=>'D:\ORACLE\PRODUCT\10.2.0\ARCHIVELOG\XYHORCL\1_9_842540062.ARC',options=>dbms_logmnr.new);
4、啟動Logminer
SQL> execute dbms_logmnr.start_logmnr(options=>dbms_logmnr.dict_from_online_catalog);
5、把分析資料放入表並授權給普通使用者
SQL> create table logminer_20140320 as select * from v$logmnr_contents;
grant select on logminer_20140320 to scott;
6、結束LogMiner分析
SQL> execute dbms_logmnr.end_logmnr;
7、檢視分析日誌結果
SQL> select timestamp,sql_redo,sql_undo from sys.logminer_20140320 where seg_own
er='SCOTT' and sql_undo is not null;
1、查詢資料庫歸檔日誌序號
SQL>alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss';
SQL>select sequence#,first_time from v$log_history order by first_time desc;
2、確定要分析的日誌
SQL>select first_time,name from v$archived_log order by first_time desc;
3、使用logminer分析資料
SQL> execute dbms_logmnr.add_logfile(logfilename=>'D:\ORACLE\PRODUCT\10.2.0\ARCHIVELOG\XYHORCL\1_9_842540062.ARC',options=>dbms_logmnr.new);
4、啟動Logminer
SQL> execute dbms_logmnr.start_logmnr(options=>dbms_logmnr.dict_from_online_catalog);
5、把分析資料放入表並授權給普通使用者
SQL> create table logminer_20140320 as select * from v$logmnr_contents;
grant select on logminer_20140320 to scott;
6、結束LogMiner分析
SQL> execute dbms_logmnr.end_logmnr;
7、檢視分析日誌結果
SQL> select timestamp,sql_redo,sql_undo from sys.logminer_20140320 where seg_own
er='SCOTT' and sql_undo is not null;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29489498/viewspace-1125756/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Logminer日誌挖掘
- Logminer如何檢視日誌
- logminer異機挖掘歸檔日誌
- 分析Oracle資料庫日誌檔案(三)EPOracle資料庫
- 分析Oracle資料庫日誌檔案(二)DOOracle資料庫
- 分析Oracle資料庫日誌檔案(一)HBOracle資料庫
- 如何使用MySQL資料庫來分析Apache日誌?MySql資料庫Apache
- oracle資料庫歸檔日誌量陡增分析Oracle資料庫
- logminer進行資料探勘分析測試
- 使用 Oracle logminer 挖掘日誌恢復誤刪資料以及查詢操作者Oracle
- oracle資料庫mmnl日誌很大Oracle資料庫
- 日誌分析-apache日誌分析Apache
- openGauss資料庫日誌管理指導資料庫
- 瀚高資料庫日誌挖掘方法資料庫
- Sql Server2014資料庫清理日誌SQLServer資料庫
- springboot+logback日誌非同步資料庫Spring Boot非同步資料庫
- SQLServer資料庫日誌太大處理方式SQLServer資料庫
- 資料庫altert日誌中的GTX提示資料庫
- [日誌分析篇]-利用ELK分析jumpserver日誌-日誌拆分篇Server
- IIS 日誌匯入到資料庫的方法資料庫
- Oralce資料庫關閉歸檔日誌並且刪除歸檔日誌資料庫
- 資料庫MySQL一般查詢日誌或者慢查詢日誌歷史資料的清理資料庫MySql
- 如何開關資料庫告警日誌及修改日誌級別資料庫
- 使用oracle的logminer同步資料Oracle
- 系統日誌及資料庫相關資訊收集資料庫
- 遊戲日誌分析2:全方位資料採集遊戲
- python過濾nginx access日誌存入資料庫中PythonNginx資料庫
- 獲得資料庫操作日誌的三種方式資料庫
- 從 Oracle 日誌解析學習資料庫核心原理Oracle資料庫
- 【ElasticSearch】給ElasticSearch資料庫配置慢查詢日誌Elasticsearch資料庫
- crash日誌分析
- FDOAGENT日誌分析
- 日誌資料分析關乎企業風險管控
- 玄機-第二章日誌分析-apache日誌分析Apache
- SQL server資料庫高可用日誌傳送的方法SQLServer資料庫
- 達夢8資料庫REDO日誌日常管理方法資料庫
- 【LOG】Oracle資料庫清理日誌、跟蹤檔案利器Oracle資料庫
- Logtail:像查詢資料庫一樣查詢日誌AI資料庫
- 資料庫篇:mysql日誌型別之 redo、undo、binlog資料庫MySql型別