当前位置:Gxlcms > 数据库问题 > oracle隐含参数修改与查看

oracle隐含参数修改与查看

时间:2021-07-01 10:21:17 帮助过:4人阅读

alter system set "_allow_resetlogs_corruption"=false scope=spfile sid=‘*‘;

col name for a30;
col value for a10;
select
x.ksppinm  name,
y.ksppstvl  value,
y.ksppstdf  isdefault,
decode(bitand(y.ksppstvf,7),1,‘MODIFIED‘,4,‘SYSTEM_MOD‘,‘FALSE‘)  ismod,
decode(bitand(y.ksppstvf,2),2,‘TRUE‘,‘FALSE‘)  isadj
from
sys.x$ksppi x,
sys.x$ksppcv y
where
x.inst_id = userenv(‘Instance‘) and
y.inst_id = userenv(‘Instance‘) and
x.indx = y.indx and x.ksppinm =‘_allow_resetlogs_corruption‘
order by
translate(x.ksppinm, ‘ _‘, ‘ ‘)

本文出自 “mlqiang” 博客,请务必保留此出处http://031106.blog.51cto.com/152234/1969443

oracle隐含参数修改与查看

标签:oracle   隐含参数   

人气教程排行