|
I read the thread in that forum. You're asking under what condition you'll have a datafile whose datafile status is online and the file is read write and yet the datafile checkpoint SCN (in controlfile) is lower than the database checkpoint. There's one scenario I can think of. You put a tablespace in backup mode and checkpoint. The datafiles in the tablespace in the backup mode will have the SCN's frozen. Here's my test (in 10.2.0.1, but should be version independent):
alter tablespace ts begin backup;
set numw 12
select file#,status,enabled,d.checkpoint_change# d_ckpt,f.checkpoint_change# f_ckpt from v$database d,v$datafile f order by 4,5;
alter system checkpoint;
select file#,status,enabled,d.checkpoint_change# d_ckpt,f.checkpoint_change# f_ckpt from v$database d,v$datafile f order by 4,5;
select * from v$backup where status = 'ACTIVE';
alter tablespace ts end backup;
Other than this, maybe Metalink Note:209329.1 helps.
Yong Huang
[ 本帖最后由 Yong Huang 于 2009-8-30 08:49 编辑 ] |
|