Monitoring Server Archive Log Disk Space Use
You can monitor archive log disk space use to manage your system.
By default, ARCHIVELOG mode is disabled in Oracle Audit Vault Server. The ARCHIVELOG mode once enabled, copies the filled online redo logs to disk. This enables you to back up the database while it is open and being accessed by users, and to recover the database to any desired point in time. You should monitor the disk space usage for the redo logs.
To change from No Archive Mode to Archive Mode, follow these steps:
-
Log in as oracle user.
-
Connect to SQLPlus as *sysdba user.
-
Run the command:
archive log list;Observe the following output:
Database log mode No Archive ModeAutomatic archival DisabledArchive destination USE_DB_RECOVERY_FILE_DEST -
In case the Database log mode is
No Archive Mode, then run the following commands:shutdown immediate;startup mount;alter database archivelog;archive log list; -
Observe the following output:
Database log mode Archive ModeAutomatic archival EnabledArchive destination USE_DB_RECOVERY_FILE_DEST -
Run the command:
alter database open;Note:
-
If you change the
ARCHIVELOGmode during the backup configuration process, after the database restarts, then ensure the Java Framework internal tool is running on the Audit Vault Server. -
Archivelog mode is required for hot backup.
-
See Also:
-
Oracle AI Database Administrator’s Guide for more information to set up archive log mode and other general information about Archive logs.
-
Method 1: Using the LOG_ARCHIVE_DEST_n Parameter for more information about changing the
LOG_ARCHIVE_DEST_n location to relocate these archive log files to larger disks. -
Oracle AI Database Backup and Recovery User’s Guide for information about backing up the archive logs.