源地址:http://blog.csdn.net/changyanmanman/article/details/7611758
1、查看这些被隐藏的参数的脚本:
set linesize 132 ——设置一行中可以输出的字符数,我一般在sqlplus中都设75-90左右,设置多了在desc命令时很难看。 column name format a30 column value format a25 select x.ksppinm name, y.ksppstvl value, y.ksppstdf isdefault, decode(bitand(y.ksppstvf,7),1,'MODIFIED',4,'SYSTEM_MOD','FALSE') ismod, decode(bitand(y.ksppstvf,2),2,'TRUE','FALSE') isadj from sys.x$ksppi x, sys.x$ksppcv y where x.inst_id = userenv('Instance') and y.inst_id = userenv('Instance') and x.indx = y.indx and x.ksppinm like '%_&par%' order by translate(x.ksppinm, ' _', ' ') /
时间: 2024-12-04 11:37:10