oracle如何查看隐藏的参数Oracle认证考试
文章作者 100test 发表时间 2010:02:02 15:33:58
来源 100Test.Com百考试题网
0select
i.ksppinm name,
i.ksppdesc description,
cv.ksppstvl value,
cv.ksppstdf isdefault,
decode(bitand(cv.ksppstvf,7),1, MODIFIED ,4, SYSTEM_MOD , FALSE ) ismodified,
decode(bitand(cv.ksppstvf,2),2, TRUE , FALSE ) isadjusted from
sys.x$ksppi i,
sys.x$ksppcv cv
where
i.inst_id=userenv( Instance ) and
cv.inst_id=userenv( Instance ) and
i.indx=cv.indx and
i.ksppinm like /_% escape /
order by
replace(i.ksppinm, _ , ).