windows下oracle开归档

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

C:\Users\Administrator>sqlplus / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on 星期六9月17 14:21:52 2016

Copyright (c) 1982, 2010, Oracle. All rights reserved.

连接到:

Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> archive log list;

数据库日志模式非存档模式

自动存档禁用

存档终点USE_DB_RECOVERY_FILE_DEST

最早的联机日志序列 5

当前日志序列7

SQL> shutdown immediate;

数据库已经关闭。

已经卸载数据库。

ORACLE 例程已经关闭。

SQL> startup mount;

ORACLE 例程已经启动。

Total System Global Area 3423965184 bytes

Fixed Size 2180544 bytes

Variable Size 1862273600 bytes

Database Buffers 1543503872 bytes

Redo Buffers 16007168 bytes

数据库装载完毕。

SQL> alter database archivelog;

数据库已更改。

SQL> alter database open;

数据库已更改。

SQL> archive log list;

数据库日志模式存档模式

自动存档启用

存档终点USE_DB_RECOVERY_FILE_DEST

最早的联机日志序列 5

下一个存档日志序列7

当前日志序列7

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++

=====

修改归档日志存档终点

alter system set log_archive_dest_1='location=D:\app\Administrator\archivelog' scope=spfile; 重启数据库,查看

shutdown immediate;

startup mount;

alter database open;

archive log list;

SQL> archive log list;

数据库日志模式存档模式

自动存档启用

存档终点USE_DB_RECOVERY_FILE_DEST

最早的联机日志序列 5

下一个存档日志序列7

当前日志序列7

相关文档
最新文档