【DB笔试面试786】在Oracle中,什么是坏块?坏块可以分为哪几类?
2021/4/16 19:25:22
本文主要是介绍【DB笔试面试786】在Oracle中,什么是坏块?坏块可以分为哪几类?,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在Oracle中,什么是坏块?坏块可以分为哪几类?
♣ 答案部分
Oracle数据文件的坏块可以分为物理坏块(Physical Block Corruptions)和逻辑坏块(Logical Block Corruptions)。坏块通常是通过Oracle的ORA-01578错误报告出来的,详细的损坏描述会在告警日志中打印出来,“oerr ora”对该错误的解释如下所示:
1[root@rhel6lhr ~]# oerr ora 1578 201578, 00000, "ORACLE data block corrupted (file # %s, block # %s)" 3// *Cause: The data block indicated was corrupted, mostly due to software 4// errors. 5// *Action: Try to restore the segment containing the block indicated. This 6// may involve dropping the segment and recreating it. If there 7// is a trace file, report the errors in it to your ORACLE 8// representative.
可能的报错如下所示:
1ORA-01578: ORACLE data block corrupted (file # 11, block # 110) 2ORA-01110: data file 6: '/u01/app/oracle/oradata/orcl/tbs01.dbf'
在以上示例中,绝对文件号(AFN,Absolute File Number)为11,块号(Block Number)为110。
使用如下的SQL可以获取相对文件号RFN(RFN,Relative File Number):
1SELECT DBMS_UTILITY.DATA_BLOCK_ADDRESS_FILE(&&RDBA) RFN, 2 DBMS_UTILITY.DATA_BLOCK_ADDRESS_BLOCK(&&RDBA) BL 3FROM DUAL;
其中,RDBA(Relative Data Block Address)表示相对数据块地址。
使用如下的SQL可以获取绝对文件号AFN:
1SELECT FILE_ID AFN, RELATIVE_FNO, TABLESPACE_NAME 2FROM DBA_DATA_FILES 3WHERE RELATIVE_FNO=&RFN;
物理坏块指的是块格式本身已经损坏,块内的数据没有任何意义。物理坏块一般是由于内存问题、OS问题、I/O子系统问题或硬件引起的,逻辑坏块一般是由Oracle Bug等原因引起的。物理块损坏也可以称为介质块损坏(Media Corrupt Block)。物理坏块可以分为以下几类:
① 坏头(Bad header):数据块头(Cache Header)被无效值损坏
② 块有裂缝/不完整(Fractured/Incompleted Block):数据块头和块尾不匹配,其trace文件内容如下所示:
1Corrupt block relative dba: 0x0380e573 (file 14, block 58739) 2Fractured block found during buffer read 3Data in bad block - 4type: 6 format: 2 rdba: 0x0380e573 5last change scn: 0x0288.8e5a2f78 seq: 0x1 flg: 0x04 6consistency value in tail: 0x00780601 7check value in block header: 0x8739, computed block checksum: 0x2f00 8spare1: 0x0, spare2: 0x0, spare3: 0x0 9*** 10Reread of rdba: 0x0380e573 (file 14, block 58739) found same corrupted data
③ 块的块校验和(checksum)无效,其trace内容如下所示:
1Corrupt block relative dba: 0x0380a58f (file 14, block 42383) 2Bad check value found during buffer read 3Data in bad block - 4type: 6 format: 2 rdba: 0x0380a58f 5last change scn: 0x0288.7784c5ee seq: 0x1 flg: 0x06 6consistency value in tail: 0xc5ee0601 7check value in block header: 0x68a7, computed block checksum: 0x2f00 8spare1: 0x0, spare2: 0x0, spare3: 0x0 9*** 10Reread of rdba: 0x0380a58f (file 14, block 42383) found same corrupted data
④ 块的位置错误(Block Misplaced):检验和正确,但是正在被读取的数据块的内容属于另外一个块
1Corrupt block relative dba: 0x0d805a89 (file 54, block 23177) 2Bad header found during buffer read 3Data in bad block - 4type: 6 format: 2 rdba: 0x0d805b08 ----> Block is different than expected 0x0d805a89 5last change scn: 0x0692.86dc08e3 seq: 0x1 flg: 0x04 6consistency value in tail: 0x08e30601 7check value in block header: 0x2a6e, computed block checksum: 0x0 8spare1: 0x0, spare2: 0x0, spare3: 0x0 9***
⑤ 归零的块(Zeroed out blocks):可参考Note 1545366.1。
逻辑坏块指的是块内的数据在逻辑上存在问题,比如说索引块的索引值没有按顺序排列导致的逻辑坏块。逻辑坏块通常包含一个正确的checksum和结构,但是块头以下的部分(块的内容)被损坏,可能引起不同的ORA-600错误。逻辑损坏详细的损坏信息通常不打印在alert告警日志中,但是DBV将报告逻辑损坏的块。
逻辑坏块可以分为以下几类:
① 行被不存在的事务锁定--ORA-600[4512]等
② 使用的空间大小不等于块的大小
③ avsp bad
④ 其它
这篇关于【DB笔试面试786】在Oracle中,什么是坏块?坏块可以分为哪几类?的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享