Block modification tracking in Oracle 11g

Source: Internet
Author: User

Block change tracking is a function provided from Oracle 10 Gb. It is disabled by default in the system.
When this feature is enabled, the relevant information is recorded in the file whenever the data block changes.
In this way, when RMAN performs Incremental backup, you do not need to completely traverse the entire data file and find the data block to be backed up.
This greatly improves the backup efficiency.

1. Confirm the function status
SQL> desc v $ block_change_tracking;
Name
----------------------------------
STATUS
FILENAME
BYTES
SQL>
SQL> select * from v $ block_change_tracking; // default disabled
STATUS FILENAME BYTES
--------------------------------------------
DISABLED

2. Enable this function
The file name must be specified in 11g.
SQL> alter database enable block change tracking using file 'e: \ app \ oraclebase \ oradata \ orcl \ rman \ block_change_tracking.log ';
The default file name exists in 10 Gb. Use the following statement.
SQL> alter database enable block change tracking;

3. disable this function
SQL> alter database disable block change tracking;

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.