(
SELECT tablespace_name
segment_type
owner
segment_name
FROM dba_extents
WHERE file_id =
AND between block_id AND block_id+blocks
(
假如發生壞塊的對象是一個索引
(
exec DBMS_REPAIR
(
create table corrupt_table_bak
as
select * from corrupt_table;
(
drop table corrupt_table;
(
alter table corrupt_table_bak
rename to corrupt_table;
(
[
From:http://tw.wingwit.com/Article/program/SQL/201311/16299.html