Adding and Removing REDO Logs in AWS RDS

Adding REDO Logs


--
-- Adding a 2G REDO Log.
--
-- On AWS RDS you do not have access to the server or to a proper SYSDBA account.  
-- As a result you are defendant on lots of AWS RDS packages.
-- Or in some instances, you need to find new ways of achieving the same thing
--
 
exec rdsadmin.rdsadmin_util.add_logfile(p_size => '2G');
/

Dropping REDO Logs


--
-- Dropping a 2G REDO Log.
--
-- On AWS RDS you do not have access to the server or to a proper SYSDBA account.  
-- As a result you are defendant on lots of AWS RDS packages.
-- Or in some instances, you need to find new ways of achieving the same thing
--
 
exec rdsadmin.rdsadmin_util.drop_logfile(grp => 1);
/

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License