| |
很多人都有这样的了解,为了防止热备期间的分裂块问题,oracle在热备过程中会对修改块进行全块的redo记录。
请大家注意:此外还存在一个隐含参数可以控制这个行为:
sql> select x.ksppinm name, y.ksppstvl value, x.ksppdesc describ
2 from sys.x$ksppi x, sys.x$ksppcv y
3 where x.inst_id = userenv ('instance')
4 and y.inst_id = userenv ('instance')
5 and x.indx = y.indx
6 and x.ksppinm like '%&par%'
7 /
enter value for par: blocks
old 6: and x.ksppinm like '%&par%'
new 6: and x.ksppinm like '%blocks%'
name value describ
------------------------------
_log_blocks_during_backup true log
block images when changed during backup
|
注释:此参数的缺省值是true,设置在热备份期间允许在redo中记录数据块信息,如果数据库块大小等于操作系统块大小,则可以设置该参数为false,用以减少热备期间数据库的负担。
|
|