Oracle hidden parameters
A useful query to display hidden parameters and their values:
select a.ksppinm "Parameter", b.ksppstvl "Session Value", c.ksppstvl "Instance Value"Source: http://www.orafaq.com/wiki/Oracle_database_Internals_FAQ
from x$ksppi a, x$ksppcv b, x$ksppsv c
where a.indx = b.indx and a.indx = c.indx
and substr(ksppinm,1,1)='_'
order by a.ksppinm;
Labels: oracle
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home