In addition to the real time query capability of the 11g Active Data Guard feature, we can also add to our high availability capability by using the Automatic Block Media Repair feature whereby data block corruptions on the Primary database can be repaired by obtaining those blocks from the standby site – all performed by a background process (ABMR) transparent to the application.
The same functionality can be used to repair block corruptions on the Active Standby site by applying blocks which are conversely now received from the Primary site.
Let us see a test case of the same.
We create a test table and assign it to the USERS tablespace.
SQL> create table myobjects
2 tablespace users
3 as select * from all_objects;
Table created.
Using DBMS_ROWID, we determine the blocks which this table occupies (if you like, just restrict the query to the first 5 blocks in case the
Continue reading 11g Active Standby Database Automatic Block Corruption Repair


Popular Posts