Oracle 11g参数调优(建议)

系统参数

alter system set result_cache_max_size=0 scope=spfile sid='*';

alter system set standby_file_management='AUTO' scope=spfile sid='*';

alter system set archive_lag_target=1800 scope=spfile sid='*';

alter system set control_file_record_keep_time=30 scope=spfile sid='*';

alter system set session_cached_cursors=300 scope=spfile sid='*';

alter system set open_cursors=1500 scope=spfile sid='*';

alter system set undo_retention=10800 scope=spfile sid='*';

alter system set remote_login_passwordfile='EXCLUSIVE' scope=spfile sid='*';

alter system set resource_manager_plan='' scope=spfile sid='*';

alter system set statistics_level='TYPICAL' scope=spfile sid='*';

alter system set timed_statistics=TRUE scope=spfile sid='*';

alter system set undo_management='AUTO' scope=spfile sid='*';

alter system set db_cache_advice='OFF' scope=spfile sid='*';

alter system set audit_trail='NONE' scope=spfile sid='*';

alter system set audit_sys_operations=false scope=spfile sid='*';

alter system set "_ash_size"=104857600 scope=spfile sid='*';

alter system set max_dump_file_size='4096M' scope=spfile sid='*';

alter system set deferred_segment_creation=false scope=spfile sid='*';

禁用基数反馈和日志自适应切换

alter system set "_optimizer_use_feedback"=FALSE scope=spfile sid='*';

alter system set "_use_adaptive_log_file_sync"=false scope=spfile sid='*';

禁用drm特性

alter system set "_gc_policy_time"=0 scope=spfile sid='*';

alter system set "_gc_undo_affinity"=false scope=spfile sid='*';

禁用并发统计信息收集功能

exec dbms_stats.set_global_prefs('CONCURRENT','FALSE');

禁用sql tuning advisor功能

exec dbms_auto_task_admin.disable(client_name=>'sql tuning advisor',operation=>NULL,window_name=>NULL);

相关推荐
weisian15110 分钟前
Mysql--实战篇--@Transactional失效场景及避免策略(@Transactional实现原理,失效场景,内部调用问题等)
数据库·mysql
AI航海家(Ethan)14 分钟前
PostgreSQL数据库的运行机制和架构体系
数据库·postgresql·架构
Kendra9193 小时前
数据库(MySQL)
数据库·mysql
古蓬莱掌管玉米的神3 小时前
vue3语法watch与watchEffect
前端·javascript
林涧泣4 小时前
【Uniapp-Vue3】uni-icons的安装和使用
前端·vue.js·uni-app
雾恋4 小时前
AI导航工具我开源了利用node爬取了几百条数据
前端·开源·github
拉一次撑死狗4 小时前
Vue基础(2)
前端·javascript·vue.js
时光书签4 小时前
Mongodb副本集群为什么选择3个节点不选择4个节点
数据库·mongodb·nosql
祯民4 小时前
两年工作之余,我在清华大学出版社出版了一本 AI 应用书籍
前端·aigc
热情仔4 小时前
mock可视化&生成前端代码
前端