文档解释
ORA-19905: log_archive_format must contain %s, %t and %r
Cause: log_archive_format is missing a mandatory format element. Starting with Oracle 10i, archived log file names must contain each of the elements %s(sequence), %t(thread), and %r(RESETLOGS ID) to ensure that all archived log file names are unique.
Action: Add the missing format elements to log_archive_format.
ORA-19905: log_archive_format must contain %s, %t and %r 的详细说明:
这是一个由Oracle数据库引擎引擎引发的错误,其出发点为: Database没有在log_archive_format参数设置中放置所有的必要格式。
官方解释
error: ORA-19905: log_archive_format参数必须包含以下三个格式: %s – 日志序列号
%t – 线程编号
%r – 重置日志序列号
常见案例
这个错误可能发生在下列情况:
1.log_archive_format参数不包含所有的必须格式;
2.log_archive_format参数设置不正确;
3.用户更改了log_archive_format变量的格式而没有将其设置为正确的格式。
一般处理方法及步骤
1. 通过使用SQL * Plus等工具连接到数据库。
2. 执行show parameter log_archive_format以显示当前log_archive_format值。
3.找出没有提供所有必需格式的值,然后从语句中删除此值。
4.使用以下语法设定新的log_archive_format值:
ALTER SYSTEM SET log_archive_format=’%s-%t-%r’ SCOPE=SPFILE;
5. 重新启动数据库以使新log_archive_format值生效。