Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Hidden database parameters

3 views
Skip to first unread message

Daniel Trickett

unread,
Aug 11, 2002, 8:54:07 PM8/11/02
to
Hi,

I found something a while back on which view/table contains the hidden
database parameters
in Oracle 8i. Now when I need it, I can't remember what the name was...

Can anyone help out on this ? Thanks in advance...

Dan


Howard J. Rogers

unread,
Aug 11, 2002, 9:25:58 PM8/11/02
to
select * from sys.x$ksppi should do it.

Regards
HJR

"Daniel Trickett" <Daniel....@oracle.com> wrote in message
news:PGD59.93780$uj.5...@rwcrnsc51.ops.asp.att.net...

M. Stoddard

unread,
Aug 11, 2002, 9:27:59 PM8/11/02
to
This works for Oracle 8i. Run it as sys.
Remember to set pause off when you're done as it can be a nuisance.
- Martin

set verify off
set pagesize 36
set linesize 132
set pause on
set pause 'Hit enter to continue'
set feedback off
set showmode off
set echo off
column pname format a32 heading 'Name';
column pval format a32 heading 'Value' word_wrapped;
column deflt format a7 heading 'Default|value?';
column pdesc format a48 heading 'Description' word_wrapped;

select ksppinm pname,
ksppstvl pval,
ksppstdf deflt,
ksppdesc pdesc
from x$ksppi x,
x$ksppsv y
where x.indx = y.indx
order by
decode(substr(ksppinm,1,1),'_',substr(ksppinm,2,length(ksppinm)-1),ksppinm)
/

"Daniel Trickett" <Daniel....@oracle.com> wrote in message
news:PGD59.93780$uj.5...@rwcrnsc51.ops.asp.att.net...

0 new messages