The hidden parameters cannot queried from v$parameter or "show parameter" unless they are changed explicitly by "alter system" command or in init.ora. However having SYSDBA role make you able to query those parameters alongside their values and descriptions as follow:
SELECT a.ksppinm Param,
b.ksppstvl SessionVal,
c.ksppstvl InstanceVal,
a.ksppdesc Descr
FROM x$ksppi a, x$ksppcv b, x$ksppsv c
WHERE a.indx = b.indx
AND a.indx = c.indx
AND a.ksppinm LIKE '/_%' ESCAPE '/'
ORDER BY 1
SELECT a.ksppinm Param,
b.ksppstvl SessionVal,
c.ksppstvl InstanceVal,
a.ksppdesc Descr
FROM x$ksppi a, x$ksppcv b, x$ksppsv c
WHERE a.indx = b.indx
AND a.indx = c.indx
AND a.ksppinm LIKE '/_%' ESCAPE '/'
ORDER BY 1
It's good to know in depth about the hidden features inside the magnificent Oracle apps.
ReplyDelete