普通的参数通过pfile或者spfile,甚至show parameter 都可以看到,但是隐含参数就要靠下面的语句查出来了:

set linesize 160;
col "_add_skiprules" format a30 ; 
col "Instance Value" format a30;  
col "Session Value" format a30; 
col Parameter format a50;

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
a.ksppinm LIKE '/_%' escape '/'
还有下面这个语句:
set linesize 160;
col name format a50; 
col value format a30;  
col description format a40;
select a.ksppinm name,b.ksppstvl value,a.ksppdesc description
from x$ksppi a,x$ksppcv b
where a.indx = b.indx

相关文章:

  • 2021-08-06
  • 2022-12-23
  • 2022-12-23
  • 2021-07-13
  • 2021-11-17
  • 2022-12-23
  • 2022-02-24
  • 2021-06-06
猜你喜欢
  • 2022-12-23
  • 2021-05-19
  • 2022-12-23
  • 2022-12-23
  • 2021-05-28
  • 2021-05-26
  • 2022-12-23
相关资源
相似解决方案