set linesize 132
  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, ' _', ' ')
  /

相关文章:

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