Block changing tracking improves the performance of incremental backups by recording changed blocks in the block change tracking file. During an incremental backup, instead of scanning all data blocks to identify which blocks have changed, RMAN uses this file to identify the changed blocks that need to be backed up.
You can enable block change tracking when the database is either open or mounted. This section assumes that you intend to create the block change tracking file as an Oracle Managed File in the database area, which is where the database maintains active database files such as data files, control files, and online redo log files.
To determine if block change tracking is enabled, check the STATUS
and FILENAME
columns in the V$BLOCK_CHANGE_TRACKING
view, using the following statement from the SQL or RMAN prompt:
SELECT status, filename FROM V$BLOCK_CHANGE_TRACKING;
To enable block change tracking:
See Also:
Oracle Database Reference for more information about the V$BLOCK_CHANGE_TRACKING
view.
Oracle Database Reference for more information about the DB_CREATE_FILE_DEST
initialization parameter