oracle查看隐藏参数的方法
发布时间:2020-12-12 15:41:44 所属栏目:百科 来源:网络整理
导读:有的时候需要查看或者设置隐藏参数,但是直接使用show parameter是看不到隐藏参数的。所有的隐藏参数都是以一个下划线开头的。 使用以下语句查看隐藏参数。 select x.ksppinm name,y.ksppstvl,x.ksppdesc describ from x$ksppi x,x$ksppcv y where x.inst_id
有的时候需要查看或者设置隐藏参数,但是直接使用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; (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |