alter system set event='28401 trace name context forever,level 1:10949 trace name context
forever,level 1’scope=sple sid=‘*’; Oracle 密码延迟验证的新特性,这个特性的作用是,如果用户输入
了错误的密码尝试登录,那么随着登录错误次数的增加,每次登录前验证的时间也会增加,以此减缓可能对于
数据库重复的口令尝试攻击。但是对于正常的系统,由于口令的更改,可能存在某些被遗漏的客户端,不断重
复尝试,从而引起数据库内部长时间的 Library Cache Lock 的等待,这种情形非常常见。
alter system set "_highthreshold_undoretention"=24000 scope=sple sid='*'; 允许
undo_retention 设置的最大值,当修改 undo_retention 的值超过改参数值,相关报错 ORA-
55567 , ORA-55568 , ORA-55569
alter system set "_use_adaptive_log_le_sync"=false scope=sple sid='*'; 该参数在 commit 次数
较多的系统中 ,post/wait and polling 特性对性能影响明显 , 主要是在写日志上的等待上影响了事务的提交速
度 . 建议在 11g 中关闭 ( 设置为 false)._use_adaptive_log_le_sync 造成性能下降的原因可能是其导致
LGWR 使用了 polling 方式来取代 post/wait ,并且 polling 的间隔是 10ms ,这个间隔是在代码里写死
的。
alter system set "_PX_use_large_pool"=true scope=sple sid='*'; 建议设置,如果不设置并行将消耗
share pool
Oracle 19c 参数修改
评论