sqlplus sys/sys as sysdba
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%';
또는
select ksppinm name,
ksppstvl value,
ksppstdf is_default
from sys.x$ksppi i, sys.x$ksppcv v
where i.indx = v.indx
and ksppinm like '%query_execution%';
SMALL
'Oracle' 카테고리의 다른 글
Real-Time SQL Monitoring (0) | 2020.10.19 |
---|---|
Database Sample Schemas (0) | 2020.09.26 |
Oracle_Home 경로 확인 (0) | 2020.08.08 |
SQLP - SQL자격검정실전문제 실기문제2 풀이 (0) | 2020.06.30 |
SQLP - SQL자격검정실전문제 실기문제1 풀이 (0) | 2020.06.29 |