重庆思庄Oracle、Redhat认证学习论坛

标题: 告警日志出现Log sequence in archive filename wrapped to fix length [打印本页]

作者: 刘泽宇    时间: 2021-7-25 10:34
标题: 告警日志出现Log sequence in archive filename wrapped to fix length
查看数据库alert告警日志发现出现了这样的提示:
ARC1: Warning.  Log sequence in archive filename wrapped
to fix length as indicated by %S in LOG_ARCHIVE_FORMAT.
Old log archive with same name might be overwritten.
Committing creation of archivelog 'D:\ARCHIVELOG\ARC45567_0749482202.LOG'

这是oracle的一个bug,数据库的LOG_ARCHIVE_FORMAT默认值为ARC%S_%R.%T。%S为一个序列号,仅支持5位数(即最大值为99999),当超过这个值时,仍然只显示5位,所以在alert中提示说可能会覆盖掉同名文件,
系统当前的log_archive_format 设置:

SQL> show parameter log_archive_format

NAME                                 TYPE        VALUE
------------------------------------ ----------- -----------
log_archive_format                   string      ARC%S_%R.%T

Oracle提供的解决办法是:将log_archive_format中的%S改成%s.
这个参数修改需要重启数据库。

alter system set LOG_ARCHIVE_FORMAT='ARC%s_%R.%T' scope=spfile;

最后重启数据库即可。







欢迎光临 重庆思庄Oracle、Redhat认证学习论坛 (http://bbs.cqsztech.com/) Powered by Discuz! X3.2