oracle隐含参数修改与查看alter system set "_allow_resetlogs_corruption"=false scope=spfile sid='*';col name for a
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, ' _', ' ')
--结束END--
本文标题: oracle隐含参数修改与查看
本文链接: https://lsjlt.com/news/40291.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0