5.283 DBA_REPAIR_TABLE
DBA_REPAIR_TABLE
describes any corruptions found by the DBMS_REPAIR
.CHECK_OBJECT
procedure.
This information is used by the DBMS_REPAIR
.FIX_CORRUPT_BLOCKS
procedure on execution. To create this view, first run the DBMS_REPAIR
.ADMIN_TABLES
procedure. To populate the resulting repair table for an object, run the DBMS_REPAIR
.CHECK_OBJECT
procedure on the object.
Note:
The table created by the DBMS_REPAIR.ADMIN_TABLES
procedure is called REPAIR TABLE
by default. If you specify a different name, this view will have the name you specify, preceded by "DBA_REPAIR_
".
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Dictionary object number of the object with the corruption |
|
|
|
Tablespace number of the corrupt object |
|
|
|
Relative file number of the corrupt object |
|
|
|
Block number of the corruption |
|
|
|
Type of corruption encountered |
|
|
|
Schema of the corrupt object |
|
|
|
Name of the corrupt object |
|
|
|
If the object is an index, the name of its base table |
|
|
|
Partition or subpartition name, if applicable |
|
|
|
Description of corruption |
|
|
|
Description of repair action |
|
|
|
Whether the block is marked corrupt ( |
|
|
|
Date and time when this row was insert into the repair table |
|
|
|
Date and time when the block was modified by the |
|
|
|
Reserved for future use |
See Also:
Oracle Database PL/SQL Packages and Types Reference for more information about the DBMS_REPAIR
package