Skip to content
Skip to content
Rich Technologies

The Technical Weblog of Shad Rich

  • Resume
  • Contact
← New Site
How To Change Oracle Apps System Passwords →
-->

How To Move Online Redo Logs While Database Is Running

Posted on September 2, 2007 by Shad

Issue


You have online redo log files in the wrong place and want to move them.

Solution


  1. Run the following SQL to locate the current redo log groups and their members:
  2. select l.group# group_number
    , l.status group_status
    , f.member group_member
    , f.status file_status
    from v$log l
    , v$logfile f
    where l.group# = f.group#
    order by l.group#
    , f.member;

  3. Find a location that can contain the new log files.
  4. Create the new log files using the following SQL. Note that there must be at least two logfile groups after dropping unnecessary log files.
  5. sqlplus /nolog
    SQL> connect / as sysdba
    SQL> alter database add logfile ('/path/to/new/redo_01_01.log','/path/to/new/redo_01_02.log') size 150M;
    SQL> alter database add logfile ('/path/to/new/redo_02_01.log','/path/to/new/redo_02_02.log') size 150M;

  6. Run the SQL from Step 1 to determine which logfile is CURRENT.
  7. Run the following command to switch log files. After running the SWITCH command, run the SQL from Step 1 again. Repeat the process until one of the newly created logfile groups has a CURRENT status.
  8. SQL> alter system switch logfile;

  9. After one of the newly created log files is CURRENT, run the following SQL. You should only drop logfile groups that have an INACTIVE status.
  10. SQL> alter database drop logfile group GROUP#;

  11. Repeat Step 6 for each undesired logfile group.

The dropped log files should have automatically been deleted from the file system.

References


Oracle® Database Administrator’s Guide – Managing the Redo Log

This entry was posted in Database, Oracle. Bookmark the <a href="http://www.richtechnologies.com/how-to-move-online-redo-logs-while-database-is-running/" title="Permalink to How To Move Online Redo Logs While Database Is Running" rel="bookmark">permalink</a>.
← New Site
How To Change Oracle Apps System Passwords →

2 thoughts

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

© 2023 | Blog info WordPress Theme | By Bharat Kambariya