1. 향후 지원될 기능을 미리 넣어두고 test하기 위해.(오라클내에서)
2. 어떤 문제가 발생한 경우 자세한 trace를 뜨기 위해.
3. 임의의 기능에 대한 변경 및 제약을 가하기 위해.
SQL> !cat check_hi.sql
set linesize 180
col name for a34
col value for a15
col descrition for a30
col is_default for a15
col ses_modifiable for a15
col sys_modifiable for a15
select ksppinm name,
ksppstvl value,
ksppstdf is_default,
decode(bitand(ksppiflg/256,1),1,'true','false') ses_modifiable,
decode(bitand(ksppiflg/65536,3),1,'immediate',2,'deferred',3,'immediate','false') sys_modifiable, ksppdesc descrition
from sys.x$ksppi i, sys.x$ksppcv v
where i.indx = v.indx
and i.ksppinm like '%&1%';
10g Hidden Parameter 예
=================================
Begin 4031 Diagnostic Information
=================================
The following information assists Oracle in diagnosing
causes of ORA-4031 errors. This trace may be disabled
by setting the init.ora _4031_dump_bitvec = 0
- 강좌 URL : http://www.gurubee.net/lecture/4102
- 구루비 강좌는 개인의 학습용으로만 사용 할 수 있으며, 다른 웹 페이지에 게재할 경우에는 출처를 꼭 밝혀 주시면 고맙겠습니다.~^^
- 구루비 강좌는 서비스 제공을 위한 목적이나, 학원 홍보, 수익을 얻기 위한 용도로 사용 할 수 없습니다.