Before I Posted “How To Resize redo log ” This was on Single Instance But Now I show you how to do it on Oracle Real Application Cluster
1.First Run this Query To check size, redo On your RAC :
select l.group#, l.thread#, f.member, l.archived, l.status, (bytes/1024/1024) fsize
from v$log l, v$logfile f
where f.group# = l.group#
order by 1,2
2. Now our purpose is increase redosize from 100Mb to 300 Mb
3. We are going to add our new redo file by below command:
4.
alter database add logfile group 5 ‘+ORADATA’ size 300M; << node 2
alter database add logfile group 6 ‘+ORADATA’ size 300M; << node 2
alter database add logfile group 7 ‘+ORADATA’ size 300M; << node 1
alter database add logfile group 8 ‘+ORADATA’ size 300M; << node 1
5. Switch until we are into log group 5,6,7,8 so we can drop log groups 1, 2,3 and 4 Until you see the new redo log used .
Thank you
Osama mustafa
Like this:
Like Loading...
Related
Published by Osama Mustafa
Osama considered as one of the leaders in Cloud technology, DevOps and database in the Middle-East. I have more than ten years of experience within the industry. moreover, certfied 4x AWS , 4x Azure and 6x OCI, have also obtained database certifications for multiple providers.
In addition to having experience with Oracle database and Oracle products, such as middle-ware, OID, OAM and OIM, I have gained substantial knowledge with different databases.
Currently, I am architecting and implementing Cloud and DevOps. On top of that, I'm providing solutions for companies that allow them to implement the solutions and to follow the best practices.
View all posts by Osama Mustafa