zoukankan      html  css  js  c++  java
  • 让show parameter显示隐含参数(11G)

    1.创建视图show_hidden_v$parameter

    create or replace view show_hidden_v$parameter
      (INST_ID, NUM , NAME , TYPE , VALUE , DISPLAY_VALUE, ISDEFAULT , ISSES_MODIFIABLE , ISSYS_MODIFIABLE , ISINSTANCE_MODIFIABLE,
        ISMODIFIED , ISADJUSTED , ISDEPRECATED, DESCRIPTION, UPDATE_COMMENT, HASH)
        as
       select x.inst_id,
               x.indx + 1,
               ksppinm,
               ksppity,
               ksppstvl,
              ksppstdvl,
              ksppstdf,
              decode(bitand(ksppiflg / 256, 1), 1, 'TRUE', 'FALSE'),
              decode(bitand(ksppiflg / 65536, 3),
                     1,
                     'IMMEDIATE',
                     2,
                     'DEFERRED',
                     3,
                     'IMMEDIATE',
                     'FALSE'),
             decode(bitand(ksppiflg, 4),
                    4,
                     'FALSE',
                     decode(bitand(ksppiflg / 65536, 3), 0, 'FALSE', 'TRUE')),
              decode(bitand(ksppstvf, 7), 1, 'MODIFIED', 4, 'SYSTEM_MOD', 'FALSE'),
              decode(bitand(ksppstvf, 2), 2, 'TRUE', 'FALSE'),
              decode(bitand(ksppilrmflg / 64, 1), 1, 'TRUE', 'FALSE'),
              ksppdesc,
              ksppstcmnt,
              ksppihash
         from x$ksppi x, x$ksppcv y
        where (x.indx = y.indx);
    

    2.授权一下

    SQL> grant select on show_hidden_v$parameter to scott;
    SQL> conn scott/tiger
    SQL> create synonym v$parameter for sys.show_hidden_v$parameter;
    SQL> show parameter latch
    
  • 相关阅读:
    蓝桥杯入门训练
    <泛> STL
    传递 hdu 5961 拓扑排序有无环~
    Alice and Bob hdu 4268
    Bipartite Graph hdu 5313 bitset 并查集 二分图
    Bomb HDU 3555 dp状态转移
    不要62 hdu 2089 dfs记忆化搜索
    Leaving Auction CF 749D
    Moo University
    算法(三)
  • 原文地址:https://www.cnblogs.com/abclife/p/5493068.html
Copyright © 2011-2022 走看看