oracle隐含参数修改与查看

前端之家收集整理的这篇文章主要介绍了oracle隐含参数修改与查看前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


oracle隐含参数修改与查看

alter system set "_allow_resetlogs_corruption"=false scope=spfile sid='*';col name for a30;col value for a10;selectx.ksppinm name,y.ksppstvl value,y.ksppstdf isdefault,decode(bitand(y.ksppstvf,7),1,'MODIFIED',4,'SYSTEM_MOD','FALSE') ismod,2),2,'TRUE','FALSE') isadjfromsys.x$ksppi x,sys.x$ksppcv ywherex.inst_id = userenv('Instance') andy.inst_id = userenv('Instance') andx.indx = y.indx and x.ksppinm ='_allow_resetlogs_corruption'order bytranslate(x.ksppinm,' _',' ')

猜你在找的Oracle相关文章