|
C:\Users\Administrator>sqlplus / as sysdba
SQL*Plus: Release 12.1.0.2.0 Production on 星期三 3月 7 12:35:45 2018
Copyright (c) 1982, 2014, Oracle. All rights reserved.
连接到:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing opt
1、查看当前归档日志操作模式
SQL> archive log list;
数据库日志模式 存档模式
自动存档 启用
存档终点 USE_DB_RECOVERY_FILE_DEST
最早的联机日志序列 145
下一个存档日志序列 147
当前日志序列 147
SQL>
注意:默认是把存档终点设置为USE_DB_RECOVERY_FILE_DEST,所以归档日志默认是保存在oracle系统的闪回恢复区(Flash recovery area)的。一般建议将存档终点修改为操作系统的适当目录。
2、查看快速恢复区的默认路径及大小
SQL> show parameter DB_RECOVERY_FILE_DEST
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
db_recovery_file_dest string c:\app\Administrator\fast_recovery_area
db_recovery_file_dest_size big integer 4182M
SQL> alter system switch logfile; (手动切换日志)
系统已更改。
|
|