select p.ksppinm "Parameter"
, p.ksppdesc "Description"
, c.ksppstvl "Session Value"
, s.ksppstvl "Instance Value"
from x$ksppi p
, x$ksppcv c
, x$ksppsv s
where p.inst_id = userenv('instance')
and p.indx = c.indx
and p.indx = s.indx
and p.ksppinm LIKE '#_%' escape '#'
order by p.ksppinm
/
These parameters should only be used with care and under instruction of Oracle Support or an experienced DBA.
One useful parameter is
_trace_files_public
. Trace files can be made publicly accessible in development and test environments.
No comments:
Post a Comment