Chinaunix首页 | 论坛 | 博客
  • 博客访问: 565945
  • 博文数量: 89
  • 博客积分: 2383
  • 博客等级: 大尉
  • 技术积分: 970
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-09 23:02
个人简介

Scientific Linux是重新编译的Red Hat Enterprise Linux,由费米国家加速器实验室、欧洲核研究组织以及世界各地的大学和实验室共同开发。它旨在与Red Hat Enterprise Linux完全兼容,也强调自主方便的定制,用户可以根据自己的需求做相应修改,可以使用脚本或者Anaconda给自己定制最小化的安装模式。

文章分类

全部博文(89)

文章存档

2017年(1)

2016年(2)

2013年(2)

2012年(2)

2011年(16)

2010年(13)

2009年(46)

2008年(7)

我的朋友

分类: Oracle

2009-07-29 22:12:23

Oracle10g自动归档的设置

 在Oracle10i中原有的log_archive_start参数已经废弃,对于archive log mode来说我们只需要设置log_archive_format和log_archive_dest_N参数,然后在数据库mount状态下执行alter database archivelog;即可将数据库设置成archive log mode,Oracle将会自动归档, 相反使用alter database noarchivelog;即可。
  
  以上操作数据库重起后依然有效。下面是演示过程。
  
  SQL> startup mount
  ORACLE instance started.
  
  Total System Global Area 399927208 bytes
  Fixed Size 1284008 bytes
  Variable Size 318767104 bytes
  Database Buffers 33554432 bytes
  Redo Buffers 46321664 bytes
  Database mounted.

  SQL> alter database archivelog;
  
  Database altered.
  
 SQL> alter database open;
  
  Database altered.
  
  SQL> show parameter archive_start

  NAME TYPE VALUE
  ------------------------------------ ----------- ------------------------------
  log_archive_start boolean FALSE

  SQL> archive log list
  Database log mode Archive Mode 
  Automatic archival Enabled
  Archive destination /data4/oracle10/app/prodUCt/10.0.0/dbs/arch
  Oldest online log sequence 92
  Next log sequence to archive 94
  Current log sequence 94
  SQL>

  SQL> shutdown immediate
  Database closed.
  Database dismounted.
  ORACLE instance shut down.

  SQL> startup
  ORACLE instance started.
  
  Total System Global Area 399927208 bytes
  Fixed Size 1284008 bytes
  Variable Size 318767104 bytes
  Database Buffers 33554432 bytes
  Redo Buffers 46321664 bytes
  Database mounted.
  Database opened.

  SQL> archive log list
  Database log mode Archive Mode
  Automatic archival Enabled


  Archive destination /data4/oracle10/app/product/10.0.0/dbs/arch
  Oldest online log sequence 92
  Next log sequence to archive 94
  Current log sequence 94

 SQL> !ls arch
  1_92_496877985.dbf arch_1_93_496877985.arc
  
  SQL> alter system archive log current;
  
  System altered.
  
  SQL> !ls arch
  1_92_496877985.dbf arch_1_93_496877985.arc arch_1_94_496877985.arc
  
 SQL> alter system switch logfile;
  
  System altered.
  
 SQL> /
  
  System altered.
  
 SQL> /
  
  System altered.
  
 SQL> /
  
  System altered.
  
 SQL> /
  
  System altered.
  
  SQL> !ls arch
  1_92_496877985.dbf arch_1_94_496877985.arc arch_1_96_496877985.arc arch_1_98_496877985.arc
  arch_1_93_496877985.arc arch_1_95_496877985.arc arch_1_97_496877985.arc arch_1_99_496877985.arc
阅读(1070) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~