Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> How to create Redo Log Members. Oracle8.1.7

How to create Redo Log Members. Oracle8.1.7

From: Meomeo Nguyen <meomeo22_at_YAHOO.COM>
Date: Wed, 22 May 2002 09:14:51 -0800
Message-ID: <F001.00467DCB.20020522091451@fatcity.com>

Hi,

I just wanted to create new online redo log members for existing groups. Currently I have 3 online redo log groups. Each one contains only one member. Here is information about the online redo log of a database

select group#, bytes, members from sys.v$log;

GROUP# BYTES MEMBERS
---------- ---------- ----------

         1     512000          1
         2     512000          1
         3     512000          1


select * from sys.v$logfile where group# = 1;

    GROUP# STATUS MEMBER
---------- ------- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 1 /Disk01/app/oradata/ttdb/redo01.log

select * from sys.v$logfile where group# = 2;

    GROUP# STATUS MEMBER
---------- ------- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2 /Disk01/app/oradata/ttdb/redo02.log

select * from sys.v$logfile where group# = 3;

    GROUP# STATUS MEMBER
---------- ------- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 3 /Disk01/app/oradata/ttdb/redo03.log

After reading the Database Administrator's Guide about how to create online redo log members, I am a little bit confused about the file extension for online redo log files. To create new online redo log members for an existing group, use the

alter database add logfile member '/oracle/dbs/log2b.rdo' to group 1; (From Orcle8.1.6 Administrator's Guide).

Based on my query information, member of group 1 is /Disk01/app/oradata/ttdb/redo01.log. My question is why the extension of the member of my redo log file is .log, which is different from the Oracle Administrator's Guide's above example?Here is my SQL statement to create redo log member for each existing group.

alter database add logfile member ' /Disk02/app/oradata/ttdb/redo01a.log to group 1; /* I place this member of group 1 in different location.

Just wondered whether this is a correct statement to create online redo log member. If not, please show me how to fix it. Please help.

I want to add new online redo log member for existing groups because I want to safeguard against a single point of online redo log failure.

Thanks in advance.

Trang



Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Meomeo Nguyen
  INET: meomeo22_at_yahoo.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Wed May 22 2002 - 12:14:51 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US