博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
12c archive_lag_targe强制日志切换
阅读量:6459 次
发布时间:2019-06-23

本文共 1708 字,大约阅读时间需要 5 分钟。

12c R1测试环境

ARCHIVE_LAG_TARGET forces a log switch after the specified amount of time elapses.

A 0 value disables the time-based thread advance feature; otherwise, the value represents the number of seconds. Values larger than 7200 seconds are not of much use in maintaining a reasonable lag in the standby database. The typical, or recommended value is 1800 (30 minutes). Extremely low values can result in frequent log switches, which could degrade performance; such values can also make the archiver process too busy to archive the continuously generated logs.

建议半个小时到1个小时切换一次,以下为了做实验测试,设置了60秒。

SQL> show parameter lagNAME                                 TYPE        VALUE------------------------------------ ----------- ------------------------------archive_lag_target                   integer     0client_result_cache_lag              big integer 3000plsql_ccflags                        stringSQL> alter system set archive_lag_target=60;  --单位秒System altered.SQL> show parameter archive_lag_target;NAME                                 TYPE        VALUE------------------------------------ ----------- ------------------------------archive_lag_target                   integer     60
SQL> select name,COMPLETION_TIME from v$archived_log where name is not null order by COMPLETION_TIME desc ;NAME                                                         COMPLETION_TIME------------------------------------------------------------ -------------------+DATADG/arch/log_1_406_961866198_585bafa7.arc                2018-01-25 12-04-59+DATADG/arch/log_1_405_961866198_585bafa7.arc                2018-01-25 12-03-59...................省略
本文转自 roidba 51CTO博客,原文链接:http://blog.51cto.com/roidba/2064983,如需转载请自行联系原作者
你可能感兴趣的文章
SVN服务器使用(二)
查看>>
反射获取内部类以及调用内部类方法
查看>>
C语言 - pthread
查看>>
谈Linq To Sql的优劣--纯个人观点
查看>>
HDU 4996 Revenge of LIS(DP)
查看>>
App里面如何正确显示用户头像
查看>>
DATAGUARD维护:从库宕机后如何恢复到管理恢复模式
查看>>
Android中的PID和UID
查看>>
MAC下上公司内网
查看>>
CentOS7.4安装mysql5.7
查看>>
U-BOOT之一:BootLoader 的概念与功能
查看>>
我的路上
查看>>
Velocity处理多余空白和多余空白行问题
查看>>
内容开发平台(PLATFORM)
查看>>
java值传递
查看>>
判断一个数是否为素数的一个讨论(一)
查看>>
DB2与oracle有什么区别
查看>>
创建一个多级文件目录
查看>>
Picasa生成图片幻灯片页面图文教程
查看>>
js获取当前时间的前一天/后一天
查看>>