当前位置: 代码迷 >> Oracle管理 >> 为啥[存档终点]是USE_DB_RECOVERY_FILE_DEST,而不是目录
  详细解决方案

为啥[存档终点]是USE_DB_RECOVERY_FILE_DEST,而不是目录

热度:634   发布时间:2016-04-24 04:49:07.0
为何[存档终点]是USE_DB_RECOVERY_FILE_DEST,而不是目录?
SQL*Plus: Release 10.2.0.1.0 - Production on 星期六 12月 29 13:14:09 2
Copyright (c) 1982, 2005, Oracle.  All rights reserved.
连接到:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options

SQL> archive log list;
数据库日志模式            存档模式
自动存档             启用
存档终点            USE_DB_RECOVERY_FILE_DEST
最早的联机日志序列     29
下一个存档日志序列   32
当前日志序列           32
SQL>

为何终点不是一个目录?
SQL> show parameter log_archive_dest

NAME                                 TYPE        VALUE
------------------------------------ ----------- --------------------------
log_archive_dest                     string      E:\oracle\rich\archlog

又如何修改成一个目录?

------解决方案--------------------
show parameter DB_RECOVERY_FILE_DEST

你的DB_RECOVERY_FILE_DEST应该就是 E:\oracle\rich\archlog

参数设置:
*.log_archive_dest='location=use_db_recovery_file_dest';
  相关解决方案