獲取_字首的oracle hidden parameter隱含引數
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'),
decode(bitand(ksppilrmflg / 268435456, 1), 1, 'TRUE', 'FALSE'),
ksppdesc,
ksppstcmnt,
ksppihash
from x$ksppi x, x$ksppcv y
where (x.indx = y.indx) and x.ksppinm='_optimizer_invalidation_period';--&x
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'),
decode(bitand(ksppilrmflg / 268435456, 1), 1, 'TRUE', 'FALSE'),
ksppdesc,
ksppstcmnt,
ksppihash
from x$ksppi x, x$ksppcv y
where (x.indx = y.indx) and x.ksppinm='_optimizer_invalidation_period';--&x
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-757204/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- v$parameter gv$parameter 檢視 DDL 與隱含引數
- 常用指令碼:獲取隱含引數指令碼
- Oracle direct path read相關隱含引數Oracle
- 【PARANETERS】Oracle異常恢復相關的隱含引數Oracle
- Oracle 11G 隱含引數“_controlfile_autobackup_delay”Oracle
- how to show hidden parameter(zt)
- python parameter引數Python
- 【PARAMETER】Oracle引數:MAX_IDLE_BLOCKER_TIME 解釋OracleBloC
- [20190417]隱含引數_SPIN_COUNT.txt
- gofiber: 獲取引數Go
- 獲取url上的引數
- [20190401]隱含引數_mutex_spin_count.txtMutex
- JavaScript—獲取引數(23)JavaScript
- js獲取url傳遞引數,js獲取url?號後面的引數JS
- 使用隱含引數testMappingSpeed排查GoldenGate抽取慢的步驟APPGo
- SD 一些常用的引數(Parameter)
- URL引數獲取/轉碼
- Laravel request 獲取路由引數Laravel路由
- HttpServletRequest獲取header引數 signHTTPServletHeader
- Spring LocalVariableTableParameterNameDiscoverer獲取方法的引數名Spring
- SOLIDWORKS如何獲取模型中的引數Solid模型
- [20191206]隱含引數_db_always_check_system_ts.txt
- 查閱linux tcp核心引數kernel parameter tcp_max_syn_backlog含義之一LinuxTCP
- python獲取命令列引數的程式碼Python命令列
- JavaScript獲取url傳遞的引數值JavaScript
- springboot如何優雅的獲取前端引數Spring Boot前端
- shell 怎麼獲取引數的長度
- js實現獲取URL引數JS
- C#獲取URL引數值C#
- go語言獲取外部引數Go
- vue獲取位址列引數方法Vue
- http獲取get引數過濾HTTP
- React router 4 獲取路由引數,跨頁面引數React路由
- Spring AOP獲取攔截方法的引數名稱跟引數值Spring
- [20200420]V$SES_OPTIMIZER_ENV 查不到剛修改的隱含引數.txt
- js獲取帶#號連結後的引數JS
- 獲取url中?後面傳遞的引數
- 超簡潔的js獲取位址列引數JS
- (七)Spring Boot Controller的請求引數獲取Spring BootController