Mega Code Archive

 
Categories / Oracle PLSQL / System Packages
 

Using the DBMS_REPAIR CHECK_OBJECT Procedure

SQL> SQL> DECLARE num_corrupt INTEGER;   2  BEGIN   3  num_corrupt := 0;   4  DBMS_REPAIR.CHECK_OBJECT(   5  schema_name => 'HR',   6  object_name => 'EMP',   7  repair_table_name => 'REPAIR_TABLE',   8  corrupt_count => num_corrupt);   9  END  10  / END