- Adding Logfile in single instance is very simple, just you need to use alter database add logfile syntax.
SQL> select member
from v$logfile;
MEMBER
--------------------------------------------------------------------------------
G:\ORADATA\PUPPADB\REDO03.LOG
G:\ORADATA\PUPPADB\REDO02.LOG
G:\ORADATA\PUPPADB\REDO01.LOG
SQL> alter database add logfile
('G:\ORADATA\PUPPADB\REDO04.LOG') size 200m;
Database altered.
SQL> select
thread#,group#,bytes/1024/1024,members,status from v$log;
THREAD# GROUP# BYTES/1024/1024 MEMBERS STATUS
---------- ---------- --------------- ----------
--------------------------------------------------------
1 1 200 1 INACTIVE
1 2 200 1 CURRENT
1 3 200 1 INACTIVE
1 4 200 1 UNUSEDHappy Learning...
No comments:
Post a Comment