C:Documents and SettingsAdministrator>sqlplus /nolog
SQL*Plus: Release 10.1.0.2.0 - Production on 星期三 8月 10 14:24:33 2011
Copyright (c) 1982, 2004, Oracle. All rights reserved.
SQL> conn /as sysdba
已连接。
SQL> archive log list;
数据库日志模式 非存档模式
自动存档 禁用
存档终点 USE_DB_RECOVERY_FILE_DEST
最早的联机日志序列 25
当前日志序列 27
SQL> create pfile from spfile;
文件已创建。
SQL> host mkdir e:chinastor-archs
SQL> alter system set log_archive_dest_1='location=e:chinastor-archs' scope=both;
系统已更改。
SQL> shutdown immediate;
数据库已经关闭。
已经卸载数据库。
ORACLE 例程已经关闭。
SQL> startup mount
ORACLE 例程已经启动。
Total System Global Area 171966464 bytes
Fixed Size 787988 bytes
Variable Size 145750508 bytes
Database Buffers 25165824 bytes
Redo Buffers 262144 bytes
数据库装载完毕。
SQL> alter database archivelog;
数据库已更改。
SQL> alter database open;
数据库已更改。
SQL> archive log list;
数据库日志模式 存档模式
自动存档 启用
存档终点 e:chinastor-archs
最早的联机日志序列 25
下一个存档日志序列 27
当前日志序列 27
SQL>