oracle查看隐藏参数的方法

前端之家收集整理的这篇文章主要介绍了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;
原文链接:https://www.f2er.com/oracle/211676.html

猜你在找的Oracle相关文章