How to prevent block corruption
155651Jun 20 2008 — edited Jun 23 2008Recently there was block corruption in the database and we set the check sum parameters
SQL> alter system set db_block_checking=full scope=both;
System altered.
SQL> alter system set db_block_checksum=full scope=both;
System altered.
After this the throughput reduced by more than 50%. So this option was found to be not suitable. Is there any other method to prevent block corruption.
The block corruption occured for LOB segment stored outside the row ( disable storage in row )
Mohan