Manage Oracle Recovery File Size

Start and mount the database, then use the alter system command to set the recovery file size. Commit the change, then shutdown and restart the database.

startup mount;
alter system set db_recovery_file_dest_size = 20G scope=both;
commit;
shutdown immediate;
startup mount;
alter database open;

Comments are closed.