0% found this document useful (0 votes)
5 views4 pages

Knowledge - Base - Hidden Parameters

Uploaded by

kapil Jadhav
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views4 pages

Knowledge - Base - Hidden Parameters

Uploaded by

kapil Jadhav
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

View hidden ora.

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%';

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 '/_undo_auto%' escape '/'

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;
/
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%';

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 '/__cursor_obsolete_threshold%'/';

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 '/_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 '/';

You might also like