码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 12c   归档模式更改

时间:2014-12-15 22:05:18      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:oracle 12c   更改 归档模式

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


上述的内容就是对如何打开或关闭Oracle 12c数据库的归档模式的描述,希望会给你带来一些帮助。


本文出自 “闲云野鹤” 博客,请务必保留此出处http://228110.blog.51cto.com/218110/1590129

Oracle 12c   归档模式更改

标签:oracle 12c   更改 归档模式

原文地址:http://228110.blog.51cto.com/218110/1590129

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!