Backup Recovery
Oracle: Disable Flashback with DBMS_FLASHBACK.DISABLE
Mar 11, 2026 / · 5 min read · Oracle Flashback PL/SQL DBA Database Administration Oracle Scripts Backup Recovery Admin Guide ·Overview When working with Oracle Database, there are times when you need to look at data from the past — like rewinding a video to see what happened earlier. Oracle gives you a tool called Flashback to do this. But once you are done looking at past data, you must turn Flashback off. The command to do that is: 1EXEC …
Read MoreOracle Fast Recovery Area: Set db_recovery_file_dest
Mar 7, 2026 / · 5 min read · oracle dba backup recovery flashback fast recovery area alter system dynamic parameters fra ·Oracle Fast Recovery Area: Set DB Recovery File Dest and Size The Oracle Fast Recovery Area (FRA) is a disk location where Oracle stores and manages files related to backup and recovery. Two dynamic initialization parameters — db_recovery_file_dest and db_recovery_file_dest_size — control its location and maximum size, …
Read MoreDelete Archive Log Older Than 5 Days in Oracle RMAN
Feb 5, 2026 / · 4 min read · Oracle Database RMAN Archive Logs Database Maintenance Backup Recovery Oracle DBA Storage Management Database Administration ·Delete Archive Log Older Than 5 Days in Oracle RMAN Purpose The DELETE NOPROMPT ARCHIVELOG UNTIL TIME command removes old archive log files from your Oracle database to free up disk space and maintain storage efficiency. This RMAN (Recovery Manager) command automatically deletes archive logs that are older than a …
Read MoreOracle Data Guard Log Destinations Monitoring Script
Jan 4, 2026 / · 5 min read · Oracle Data Guard Database Monitoring SQL Scripts High Availability Backup Recovery DBA Scripts Oracle Views v$archive_dest_status v$archive_dest ·Oracle Database Log Destinations Monitoring Script for Data Guard Purpose This Oracle SQL script monitors all log destinations in a Data Guard configuration from the primary database. The query provides real-time information about archive log destinations, their status, operational modes, and standby redo log activity. …
Read MoreOracle Logical Standby Apply Stop and Start Commands
Jan 2, 2026 / · 3 min read · Oracle Database Data Guard Logical Standby SQL Apply Database Administration Backup Recovery High Availability DBA Commands ·Oracle Logical Standby Apply Stop and Start Commands Purpose The logical standby apply commands control the SQL Apply process in Oracle Data Guard logical standby databases. These commands allow database administrators to stop and start the application of redo log data from the primary database to the logical standby …
Read MoreCancel Oracle Data Guard Managed Recovery
Oct 25, 2025 / · 5 min read · oracle data guard database recovery standby database mrp sql commands database administration backup recovery V$MANAGED_STANDBY ·How to Cancel Oracle Data Guard Managed Recovery Overview The ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL command stops the Managed Recovery Process (MRP) on an Oracle Data Guard physical standby database. This command is essential when you need to perform maintenance operations, open the database in …
Read More