|
The V$BACKUP view contains a column called TIME. This column denotes the date/time the file was placed in backup mode. To see the longest amount of time the Oracle database has been in BACKUP mode for any tablespaces, use the following query:
SELECT TO_CHAR(MAX(time),'MM/DD HH24:MI:SS') AS backup_time FROM v$backup;
|