oracle查看隐藏参数的方法

有的时候需要查看或者设置隐藏参数,但是直接使用show parameter是看不到隐藏参数的。所有的隐藏参数都是以一个下划线开头的。
使用以下语句查看隐藏参数。

select x.ksppinm name,y.ksppstvl,x.ksppdesc describ from x$ksppi x,x$ksppcv y
where x.inst_id=userenv('instance')
and y.inst_id=userenv('instance')
and x.indx=y.indx and x.ksppinm='_small_table_threshold';

设置参数则和普通参数没有什么区别了

alter system|session set "_small_table_threshold"=500;

你可能感兴趣的:(oracle,oracle)