Removing Directories Pointing to the REDO and Archhive Logs on RDS
Introduction
Accessing transaction logs on AWS RDS is supported for Oracle version 11.2 onwards.
You might want to access your online and archived redo log files for mining with tools like GoldenGate. Before you can mine them you must a create a directory. Afterwards, you can use the following code to remove the directories.
Removing Directories Pointing to the REDO and Archhive Logs
-- -- Removing Directories Pointing to the REDO and Archhive Logs -- exec rdsadmin.rdsadmin_master_util.drop_archivelog_dir; exec rdsadmin.rdsadmin_master_util.drop_onlinelog_dir;