2009-05-24

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"
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;
Source: http://www.orafaq.com/wiki/Oracle_database_Internals_FAQ

Labels:

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home