Oracle 12c 归档模式更改
2014-12-15 16:03:20
原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://www.jb51.cc/article/p-dbjtmmng-cs.html
1.shutdown normal或shutdown immediate关闭数据库
sql*Plus: Release 12.1.0.1.0 Production on 星期一 12月 15 15:49:47 2014
Copyright (c) 1982,2013,Oracle. All rights reserved.
连接到:
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
With the Partitioning,OLAP,Advanced Analytics and Real Application Testing options
sql> shutdown immediate;
已经卸载数据库。
ORACLE 例程已经关闭。
2.启动Oracle数据库到mount状态
sql> startup mount;
ORACLE 例程已经启动。
Total System Global Area 2572144640 bytes
Fixed Size 2405952 bytes
Variable Size 687868352 bytes
Database Buffers 1879048192 bytes
Redo Buffers 2822144 bytes
数据库装载完毕。
3.启用或停止归档模式
如果要启用归档模式,此处使用alter database archivelog 命令。
如果要关闭归档模式,此处使用alter database noarchivelog 命令。
sql> alter database archivelog;
数据库已更改。
sql> alter database open;
数据库已更改。
sql> archive log list;
数据库日志模式 存档模式
自动存档 启用
存档终点 USE_DB_RECOVERY_FILE_DEST
最早的联机日志序列 16
下一个存档日志序列 18
当前日志序列 18
原文链接:https://www.f2er.com/oracle/207711.html