Oracle归档模式的命令及参数
文章作者 100test 发表时间 2007:03:14 13:58:29
来源 100Test.Com百考试题网
Oracle数据库可以运行在2种模式下:归档模式(archivelog)和非归档模式(noarchivelog)。归档模式可以提高Oracle数据库的可恢复性,生产数据库都应该运行在此模式下,归档模式应该和相应的备份策略相结合,只有归档模式没有相应的备份策略只会带来麻烦。
检查归档模式命令:
设置归档模式:
如果需要停止归档模式,使用:alter database noarchivelog 命令。
Oracle10g之前,你还需要修改初始化参数使数据库处于自动归档模式。在pfile/spfile中设置如下参数:
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
log_archive_start = true
重启数据库此参数生效,此时数据库处于自动归档模式。也可以在数据库启动过程中,手工执行:
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
archive log start
使数据库启用自动归档,但是重启后数据库仍然处于手工归档模式。
10g使用db_recovery_file_dest来作为归档日志的存放地(?)
可以修改db_recovery_file_dest_size参数的大小
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
alter system set db_recovery_file_dest_size=21474836480