RMAN Fast Incremental Backups
Fast Incremental Backups
There are performance issues associated with incremental backups as the whole of each datafile must be scanned to identify changed blocks. In Oracle 10g it is possible to track changed blocks using a change tracking file. Enabling change tracking does produce a small overhead, but it greatly improves the performance of incremental backups. The current change tracking status can be displayed using the following query.
SELECT status FROM v$block_change_tracking;
Change tracking is enabled using the ALTER DATABASE
command.
ALTER DATABASE ENABLE BLOCK CHANGE TRACKING;
By default the change tracking file is created as an Oracle Managed File (OMF) in the location pointed to by the DB_CREATE_FILE_DEST
parameter. An alternate location can be specified using the following command.
ALTER DATABASE ENABLE BLOCK CHANGE TRACKING USING FILE '/u01/oradata/MYSID/rman_change_track.f' REUSE;
The tracking file is created with a minumum size of 10M and grows in 10M increments. It's size is typically 1/30,000 the size of the datablocks to be tracked.
Change tracking can be disabled using the following command.
ALTER DATABASE DISABLE BLOCK CHANGE TRACKING;
Renaming or moving a tracking file can be accomplished in the normal way using the ALTER DATABASE RENAME FILE
command. If the instance cannot be restarted you can simply disable and
re-enable change tracking to create a new file. This method does result
in the loss of any current change information.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9907339/viewspace-1051469/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Using RMAN Incremental Backups to Refresh a Standby DatabaseREMDatabase
- Using RMAN Incremental Backups to Roll Forward a Physical Standby DatabaseREMForwardDatabase
- xtrabackup:error:streaming incremental backups are incompatible with the tarErrorREM
- Monitoring RMAN Backups
- RMAN cumulative and differential incremental backupREM
- Making Whole Database Backups with RMANDatabase
- Rman Backups When The Directory Structures Are DifferentStruct
- HowTo Restore RMAN Disk backups of RACREST
- RMan 備份incremental與cumulative的區別REM
- Restore Rman Backups On A Different Node When The Directory Are Diff_419137.1REST
- HowTo Restore RMAN Disk backups of RAC Database to Single Instance On Another NoRESTDatabase
- 【RMAN】什麼是Fast Recovery Area(FRA),如何配置FRAAST
- HowTo Restore RMAN Disk backups of RAC Database to Single Instance On Another Node [ID 415579.1]RESTDatabase
- RMAN之環境配置(二)---Backups to a Media Manager備份到介質管理器
- Incremental checkpoint up to RBAREM
- Using mysqldump for backupsMySql
- The different between cumulative and differential incremental backupREM
- full backup 與 level 0 incremental backupREM
- 24、關於incremental level 0 backupREM
- incremental from scn for gap standby 實驗REM
- Simple Automated Backups for MongoDB Replica SetsMongoDB
- fast-inAST
- Description of restoring file and filegroup backups in SQL ServerRESTSQLServer
- 增量檢查點(incremental checkpoint)的解疑REM
- fast_start_parallel_rollback與v$fast_start_servers和v$fast_start_transactionsASTParallelServer
- Fast Car GameASTGAM
- Fast-StartAST
- fast-bevAST
- enq: RO fast object reuse 和 enq: KO fast object checkpointENQASTObject
- rman不做0級備份,可以直接做其他級別的incremental 備份,其本質還是先做0級備份!REM
- 11G新特性 -- archival(long-term)backups
- PostgreSQL 13支援增量排序(Incremental Sorting)SQL排序REM
- Applying “Incremental Statistic” for Oracle Big Partition TableAPPREMOracle
- Fail-Fast in JavaAIASTJava
- Fail - Fast機制AIAST
- fast planner總結AST
- ASM Fast Mirror ResyncASMAST
- ORACLE 10G 新特性(INCREMENTALLY UPDATED BACKUPS)學習Oracle 10gREM