DBAsupport.com Forums - Powered by vBulletin
Results 1 to 4 of 4

Thread: Archived log files generated too often

  1. #1
    Join Date
    Jan 2002
    Posts
    474
    Why did my archiver log generate too often ??? It's like 5 archived log per min, is that b/c my redo log files is too small and I need to increase ???

    Please advise


  2. #2
    Join Date
    Nov 2000
    Posts
    224
    If your database is heavily transaction oriented and online Redolog files are small you may see this.
    Increase the size and see the difference.

  3. #3
    Join Date
    Sep 2001
    Location
    Fort Smith
    Posts
    184
    find out which is generating heavy redo and then control.
    Find using

    select s.sid,s.serial#,s.username,s.program,i.block_changes
    from v#session s, v$sess_io i
    where s.sid = i.sid
    order by 5 desc,1,2,3,4

    If they are caused by stored procs look for the dml statements and if you have no commits introduce etc
    sonofsita
    http://www.ordba.net

  4. #4
    Join Date
    Apr 2001
    Location
    London
    Posts
    725
    Has this always been the case, or has this suddenly started happening ?

    If it has always been the case, then you need to do some tuning.

    If it has suddenly started happening - ask apllication vendor if any change has been made to the application which might cause this and do a detailed performance tuning session, as this may have a knock on affect in other areas.

    You can use logminer to find out what is in your redo logs.
    Once you have eliminated all of the impossible,
    whatever remains however improbable,
    must be true.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width