Maintaining Online Redo Log Files ppt

19 184 0
Maintaining Online Redo Log Files ppt

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

7 Maintaining Online Redo Log Files Copyright © Oracle Corporation, 2002 All rights reserved Objectives After completing this lesson, you should be able to the following: • Explain the purpose of online redo log files • Outline the structure of online redo log files • Control log switches and checkpoints • Multiplex and maintain online redo log files • Manage online redo logs files with OMF • Obtain online redo log file information 7-2 Copyright © Oracle Corporation, 2002 All rights reserved Using Online Redo Log Files Online Redo log files have the following characteristics: • Record all changes made to data • Provide a recovery mechanism • Can be organized into groups • At least two groups required Redo log files 7-3 Copyright © Oracle Corporation, 2002 All rights reserved Structure of Online Redo Log Files Group Group Group Member Member Member 7-4 Member Member Member Copyright © Oracle Corporation, 2002 All rights reserved Disk Disk How Online Redo Log Files Work • Online Redo log files are used in a cyclic fashion • When a online redo log file is full, LGWR will move to the next log group – Called a log switch – Checkpoint operation also occurs – Information written to the control file 7-6 Copyright © Oracle Corporation, 2002 All rights reserved Forcing Log Switches and Checkpoints • Forcing a log switch: ALTER SYSTEM SWITCH LOGFILE; • Checkpoints can be forced by: – Setting FAST_START_MTTR_TARGET parameter FAST_START_MTTR_TARGET = 600 – ALTER SYSTEM CHECKPOINT command ALTER SYSTEM CHECKPOINT; 7-8 Copyright © Oracle Corporation, 2002 All rights reserved Adding Online Redo Log File Groups ALTER DATABASE ADD LOGFILE GROUP ('$HOME/ORADATA/u01/log3a.rdo', '$HOME/ORADATA/u02/log3b.rdo') SIZE 1M; log1a.rdo log2a.rdo log3a.rdo log1b.rdo log3b.rdo Group 7-9 log2b.rdo Group Group Copyright © Oracle Corporation, 2002 All rights reserved Adding Online Redo Log File Members ALTER DATABASE ADD LOGFILE MEMBER '$HOME/ORADATA/u04/log1c.rdo' TO GROUP 1, '$HOME/ORADATA/u04/log2c.rdo' TO GROUP 2, '$HOME/ORADATA/u04/log3c.rdo' TO GROUP 3; log1a.rdo log2a.rdo log1b.rdo log3a.rdo log2b.rdo log3b.rdo log1c.rdo log3c.rdo Group 7-10 log2c.rdo Group Group Copyright © Oracle Corporation, 2002 All rights reserved Dropping Online Redo Log File Groups ALTER DATABASE DROP LOGFILE GROUP 3; log1a.rdo Group 7-12 log2a.rdo Group Copyright © Oracle Corporation, 2002 All rights reserved log3a.rdo Group Dropping Online Redo Log File Members ALTER DATABASE DROP LOGFILE MEMBER '$HOME/ORADATA/u04/log3c.rdo'; log1a.rdo log1a.rdo log1b.rdo log1c.rdo Group 7-13 log1b.rdo log2c.rdo Group Copyright © Oracle Corporation, 2002 All rights reserved Relocating or Renaming Online Redo Log Files Relocate or rename online redo log files in one of the two following ways: • ALTER DATABASE RENAME FILE command – – – – – Shut down the database Copy the online redo log files to the new location Place the database in MOUNT mode Execute the command Open database for normal operation ALTER DATABASE RENAME FILE '$HOME/ORADATA/u01/log2a.rdo' TO '$HOME/ORADATA/u02/log1c.rdo'; • Add new members and drop old members 7-15 Copyright © Oracle Corporation, 2002 All rights reserved Clearing Online Redo Log Files • ALTER DATABASE CLEAR LOGFILE command can be used to reinitialize an online redo log file ALTER DATABASE CLEAR LOGFILE GROUP 2; • Use the UNARCHIVED keyword to avoid archiving the corrupted online redo log file ALTER DATABASE CLEAR UNARCHIVED LOGFILE GROUP 2; 7-17 Copyright © Oracle Corporation, 2002 All rights reserved Online Redo Log File Configuration ? Group Group Member Member Member Member Member Disk 7-18 Group Disk Copyright © Oracle Corporation, 2002 All rights reserved Disk Managing Online Redo Log Files with OMF • Define the DB_CREATE_ONLINE_LOG_DEST_n parameter: DB_CREATE_ONLINE_LOG_DEST_1 DB_CREATE_ONLINE_LOG_DEST_2 • A group can be added with no file specification: ALTER DATABASE ADD LOGFILE; • Dropping a group: ALTER DATABASE DROP LOGFILE GROUP 3; 7-20 Copyright © Oracle Corporation, 2002 All rights reserved Obtaining Group and Member Information Information about a group and its members can be obtained by querying the following views: ã V$LOG ã V$LOGFILE 7-21 Copyright â Oracle Corporation, 2002 All rights reserved Archived Redo Log Files • Filled online redo log files can be archived • There are two advantages in running the database in ARCHIVELOG mode and archiving online redo log files: – Recovery: A database backup together with online and archived redo log files can guarantee recovery of all committed transactions – Backup: This can be performed while the database is open • By default, the database is created in NOARCHIVELOG mode 7-23 Copyright © Oracle Corporation, 2002 All rights reserved Archived Redo Log Files • Accomplished automatically by ARCn • Accomplished manually through SQL statements • When successfully archived: – An entry in the control file is made – Records: archive log name, log sequence number, and high and low system change number (SCN) • Filled online redo log files cannot be reused until: – A checkpoint has taken place – File has been archived by ARCn • Can be multiplexed • Maintained by the DBA 7-25 Copyright © Oracle Corporation, 2002 All rights reserved Summary In this lesson, you should have learned how to: • Explain the use of online redo log files • Obtain online redo log file information • Control log switches and checkpoints • Multiplex and maintain online redo log files • Manage online redo log files with OMF 7-27 Copyright © Oracle Corporation, 2002 All rights reserved Practice Overview This practice covers the following topics: • Creating online redo log file groups and members • Maintaining online redo log file groups and members • Managing online redo log files using OMF 7-28 Copyright © Oracle Corporation, 2002 All rights reserved ... purpose of online redo log files • Outline the structure of online redo log files • Control log switches and checkpoints • Multiplex and maintain online redo log files • Manage online redo logs files. .. the use of online redo log files • Obtain online redo log file information • Control log switches and checkpoints • Multiplex and maintain online redo log files • Manage online redo log files with... Disk Disk How Online Redo Log Files Work • Online Redo log files are used in a cyclic fashion • When a online redo log file is full, LGWR will move to the next log group – Called a log switch –

Ngày đăng: 23/03/2014, 00:20

Từ khóa liên quan

Mục lục

  • Maintaining Online Redo Log Files

  • Objectives

  • Using Online Redo Log Files

  • Structure of Online Redo Log Files

  • How Online Redo Log Files Work

  • Forcing Log Switches and Checkpoints

  • Adding Online Redo Log File Groups

  • Adding Online Redo Log File Members

  • Dropping Online Redo Log File Groups

  • Dropping Online Redo Log File Members

  • Relocating or Renaming Online Redo Log Files

  • Clearing Online Redo Log Files

  • Online Redo Log File Configuration

  • Managing Online Redo Log Files with OMF

  • Obtaining Group and Member Information

  • Archived Redo Log Files

  • Slide 25

  • Summary

  • Practice 7 Overview

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan