Oracle10g自动归档的设置

王朝oracle·作者佚名  2008-05-31
宽屏版  字体: |||超大  

在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

SQL shutdown immediate

Database closed.

Database dismounted.

ORACLE instance shut down.

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 noarchivelog;

Database altered.

SQL alter database open;

Database altered.

SQL archive log list

Database log mode No Archive Mode

Automatic archival Disabled

Archive destination /data4/oracle10/app/product/10.0.0/dbs/arch

Oldest online log sequence 93

Current log sequence 95

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 No Archive Mode

Automatic archival Disabled

Archive destination /data4/oracle10/app/product/10.0.0/dbs/arch

Oldest online log sequence 93

Current log sequence 95

SQL

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
© 2005- 王朝网络 版权所有