Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Where get Logminer???
Hi,
I have tried this on Oracle 8i enterprise edition.
The Oracle utility LogMiner allows you to read information contained in online and archived redo logs based on selection criteria.
NEW is used to create a list of logs.
4) execute dbms_logmnr.add_logfile(
LogFileName => '/oracle/logs/log2.f', Options => dbms_logmnr.ADDFILE); Addfileoption is used to add logfiles.
5) In case you want to remove logfiles from the list use the removefile option.
6) Start the logminer process
execute dbms_logmnr.start_logmnr( DictFileName =>'/oracle/dictionary.ora');
7) Now check v$logmnr_contents table. Especially sql_redo,username,sql_undo columns.
For more details Check the Administrators guide Chapter 7 and Oracle
supplied packages
refrence guide . Chapter 19 and chapter 20.
Hope this helps. Received on Fri Sep 22 2000 - 00:41:18 CDT
![]() |
![]() |