1、使用DBV检查数据文件,在cmd执行:dbv file=‘E:\APP\ADMINISTRATOR\ORADATA\ORCL\USERS01.DBF‘ blocksize=8192;然后等待检测结果
2、检查损坏相关的表:
Select owner, segment_name, segment_type from dba_extents where file_id = 13 and 2415081 between block_id and block_id + blocks - 1;
查到相关的表名
3、内部事件,设置在全表扫描时跳过损坏的数据块:ALTER SYSTEM SET EVENTS=‘10231 trace name context forever,level 10‘;
原文地址:https://www.cnblogs.com/-hao/p/11474585.html
时间: 2024-10-18 18:08:01