How to disable DRM

来源:互联网 发布:g92的编程实例 编辑:程序博客网 时间:2024/05/16 04:55
How to disable DRM?


10gR2以及以下版本 
静态:
 _gc_affinity_time=0 
 _gc_undo_affinity=FALSE 
或 动态:
 _gc_affinity_limit=250   
 _gc_affinity_minimum=10485760   
 
11gR1以及以上版本 

 _gc_policy_time=0  

*._gc_undo_affinity=FALSE

或 
alter system set "_gc_read_mostly_locking"=false scope=spfile;  

alter system set "_gc_bypass_readers"=false scope=spfile; 



select inst_id,name, value
from gv$sysstat
where name in ('gc local grants','gc remote grants');

原创粉丝点击