Expand log groups

  1. View log group information.

select * from v$log;

 

This example adds four disk groups to both thread 1 and thread 2.

 

  1. Add disk groups.

alter database add logfile thread 1 group 13 ('+LOG/orcl/onlinelog/redo03.dbf') size 10240M reuse;

alter database add logfile thread 2 group 18 ('+LOG/orcl/onlinelog/redo08.dbf') size 10240M reuse;

Table-1 Parameters

Parameter

Description

thread 1

Thread number.

group 13

Log group name. You must specify the log group name when deleting logs.

LOG

Log disk group name.

Orcl

Database instance name.

status

Log group status:

  • inactive—Not in use and deletable.

  • current—In use and not deletable.

 

  1. Delete the existing log table.