Knowledge - Base - Hidden Parameters
Knowledge - Base - Hidden Parameters
init parameters
select
name,
value,
isdefault
from
v$parameter
order by name;
select
ksppinm,
ksppdesc
from
x$ksppi
where
substr(ksppinm,1,1) = '_';
select
ksppinm,
ksppstvl
from
x$ksppi a,
x$ksppsv b
where
a.indx=b.indx and
substr(ksppinm,1,1) = '_';
-----------------------------------------------------------------------------------
---------
select
ksppinm,
ksppdesc
from
x$ksppi
where
substr(ksppinm,1,1) = '_' and ksppinum like '%trace_files_public%';
select
ksppinm,
ksppdesc
from
x$ksppi
where
substr(ksppinm,1,1) = '_' and ksppinum like '%trace%';
select
ksppinm,
ksppstvl
from
x$ksppi a,
x$ksppsv b
where
a.indx=b.indx and
substr(ksppinm,1,1) = '_' and ksppinm like '%_system_trig_enabled%';
_sqlexec_progression_cost
865520
select
ksppinm,
ksppdesc
from
x$ksppi
where
substr(ksppinm,1,1) = '_' and ksppinum like '%_ktb%';
select
ksppinm,
ksppdesc
from
x$ksppi
where
substr(ksppinm,1,1) = '_' and ksppinm like '%_undo_autotune%';
decode(bitand(a.ksppiflg/65536,3),1,'IMMEDIATE',2,'DEFERRED',3,'IMMEDIATE','FALSE')
IS_SYSTEM_MODIFIABLE
FROM x$ksppi a,
x$ksppcv b,
x$ksppsv c
WHERE a.indx = b.indx
AND a.indx = c.indx
AND a.ksppinm LIKE '/_undo_auto%' escape '/'
decode(bitand(a.ksppiflg/65536,3),1,'IMMEDIATE',2,'DEFERRED',3,'IMMEDIATE','FALSE')
IS_SYSTEM_MODIFIABLE
FROM x$ksppi a,
x$ksppcv b,
x$ksppsv c
WHERE a.indx = b.indx
AND a.indx = c.indx;
/
select
ksppinm,
ksppdesc
from
x$ksppi
where
substr(ksppinm,1,1) = '_' and ksppinm like '%_undo_autotune%';
select
ksppinm,
ksppdesc
from
x$ksppi
where
substr(ksppinm,1,1) = '_' and ksppinm like '%_use_single_log_writer%';
select
ksppinm,
ksppdesc
from
x$ksppi
where
substr(ksppinm,1,1) = '_' and ksppinm like '%_system_trig_enabled%';
decode(bitand(a.ksppiflg/65536,3),1,'IMMEDIATE',2,'DEFERRED',3,'IMMEDIATE','FALSE')
IS_SYSTEM_MODIFIABLE
FROM x$ksppi a,
x$ksppcv b,
x$ksppsv c
WHERE a.indx = b.indx
AND a.indx = c.indx
AND a.ksppinm LIKE '/__cursor_obsolete_threshold%'/';
decode(bitand(a.ksppiflg/65536,3),1,'IMMEDIATE',2,'DEFERRED',3,'IMMEDIATE','FALSE')
IS_SYSTEM_MODIFIABLE
FROM x$ksppi a,
x$ksppcv b,
x$ksppsv c
WHERE a.indx = b.indx
AND a.indx = c.indx
AND a.ksppinm LIKE '/_system_trig_enabled%' escape '/';
set lines 167 pages 1000
col "Default Value" for a4
col "Session Value" for a4
col "Instance Value" for a4
col Parameter for a15
col IS_SESSION_MODIFIABLE for a10
col IS_SYSTEM_MODIFIABLE for a10
SELECT a.ksppinm "Parameter", b.KSPPSTDF "Default Value",
b.ksppstvl "Session Value",
c.ksppstvl "Instance Value",
decode(bitand(a.ksppiflg/256,1),1,'TRUE','FALSE') IS_SESSION_MODIFIABLE,
decode(bitand(a.ksppiflg/65536,3),1,'IMMEDIATE',2,'DEFERRED',3,'IMMEDIATE','FALSE')
IS_SYSTEM_MODIFIABLE
FROM x$ksppi a,
x$ksppcv b,
x$ksppsv c
WHERE a.indx = b.indx
AND a.indx = c.indx
AND a.ksppinm LIKE '/_lm_tickets%' escape '/';