oracle隐含参数修改与查看
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle隐含参数修改与查看相关的知识,希望对你有一定的参考价值。
oracle隐含参数修改与查看
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隐含参数修改与查看的主要内容,如果未能解决你的问题,请参考以下文章
隐含参数“_allow_resetlogs_corruption”的用法