使用如下語句查詢獲得文檔未記錄的初始化參數:
SQL>select a.ksppinm parameter, a.ksppdesc description,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(a.ksppinm,1,1)='_'
order by a.ksppinm
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/16381228/viewspace-715522/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/16381228/viewspace-715522/