ORA-00257问题解决

select * from V$FLASH_RECOVERY_AREA_USAGE;

 

查看ARCHIVELOG所占的比率。

如果高于50%就要扩充一下

alter system set DB_RECOVERY_FILE_DEST_SIZE=50g;

 

当然这不是最好的解决办法,最好还是备份完后删除归档日志。

 

rman target sys/sys@orcl     进入rman

rman>crosscheck archivelog all;
rman>delete noprompt expired archivelog all;删除过期日志

你可能感兴趣的:(Flash)