RE: Undocumented Parameters

2002-05-30 Thread Mark Leith

set echo on
spool parm1
select
a.ksppinm Parameter,
a.ksppdesc Description,
b.ksppstvl Session Value,
c.ksppstvl Instance Value
from
x$ksppi a,
x$ksppcv b,
x$ksppsv c
where
a.indx = b.indx
and a.indx = c.indx
and a.ksppinm like '/_%' escape '/'
/
spool off

-Original Message-
lerobe
Sent: 30 May 2002 11:43
To: Multiple recipients of list ORACLE-L


Someone posted a bit of SQL to list out the undocumented parameters and
guess what ... I deleted it. Could someone repost please ??

TIA

Lee



The information contained in this communication is
confidential, is intended only for the use of the recipient
named above, and may be legally privileged. If the reader
of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or
copying of this communication is strictly prohibited.
If you have received this communication in error, please
re-send this communication to the sender and delete the
original message or any copy of it from your computer
system.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Mark Leith
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Undocumented Parameters

2002-05-30 Thread Mandar Shete



Got this one from 
somebody, don't remember who, though...

select rpad (a.indx ,10) "number"
,rpad 
(b.KSPPINM ,50) "name"
, rpad (a.KSPPSTVL,50) "value"
, rpad (a.KSPPSTDF,10) "default"
from x$KSPPCV a
, X$KSPPI b
where a.indx = b.indx; 


HTH,
Mandar.

  -Original Message-From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]]On Behalf Of Robertson Lee - 
  lerobeSent: Thursday, May 30, 2002 4:13 PMTo: Multiple 
  recipients of list ORACLE-LSubject: Undocumented 
  Parameters
  Someone posted a 
  bit of SQL to list out the undocumented parameters and guess what ... I 
  deleted it. Could someone repost please ??
  
  TIA
  
  Lee
  
  The information contained in this 
  communication isconfidential, is intended only for the use of the 
  recipientnamed above, and may be legally privileged. If the reader of 
  this message is not the intended recipient, you arehereby notified that 
  any dissemination, distribution orcopying of this communication is 
  strictly prohibited. If you have received this communication in error, 
  please re-send this communication to the sender and delete the 
  original message or any copy of it from your 
computersystem.


RE: Undocumented Parameters

2002-05-30 Thread Stephane Faroult

Someone posted a bit of SQL to list out the
undocumented parameters and
guess what ... I deleted it. Could someone repost
please ??
 
TIA
 
Lee


You know this Chinese proverb, about giving a man a fish and feeding him once vs 
teaching him how to fish, and feeding him for all his life? The place where you should 
angle is V$FIXED_VIEW_DEFINITION, it will tell you how GV$PARAMETERS is built, which 
is the X$ table it accesses - and how it filters undocumented parameters out.

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Undocumented Parameters

2002-05-30 Thread Robertson Lee - lerobe

Thanks to everyone. Got it now.

Regards

Lee


-Original Message-
Sent: 30 May 2002 13:28
To: Multiple recipients of list ORACLE-L


Someone posted a bit of SQL to list out the
undocumented parameters and
guess what ... I deleted it. Could someone repost
please ??
 
TIA
 
Lee


You know this Chinese proverb, about giving a man a fish and feeding him
once vs teaching him how to fish, and feeding him for all his life? The
place where you should angle is V$FIXED_VIEW_DEFINITION, it will tell you
how GV$PARAMETERS is built, which is the X$ table it accesses - and how it
filters undocumented parameters out.

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


The information contained in this communication is
confidential, is intended only for the use of the recipient
named above, and may be legally privileged. If the reader 
of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or
copying of this communication is strictly prohibited.  
If you have received this communication in error, please 
re-send this communication to the sender and delete the 
original message or any copy of it from your computer
system.
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Robertson Lee - lerobe
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Undocumented Parameters

2002-05-30 Thread Farnsworth, Dave

Here is a script I got from the honorable Mark Leith.  Run this as SYS.


set echo on
spool parm1
select
a.ksppinm Parameter,
a.ksppdesc Description,
b.ksppstvl Session Value,
c.ksppstvl Instance Value
from
x$ksppi a,
x$ksppcv b,
x$ksppsv c
where
a.indx = b.indx
and a.indx = c.indx
and a.ksppinm like '/_%' escape '/'
/
spool off


Dave

-Original Message-
Sent: Thursday, May 30, 2002 7:28 AM
To: Multiple recipients of list ORACLE-L


Someone posted a bit of SQL to list out the
undocumented parameters and
guess what ... I deleted it. Could someone repost
please ??
 
TIA
 
Lee


You know this Chinese proverb, about giving a man a fish and feeding him once vs 
teaching him how to fish, and feeding him for all his life? The place where you should 
angle is V$FIXED_VIEW_DEFINITION, it will tell you how GV$PARAMETERS is built, which 
is the X$ table it accesses - and how it filters undocumented parameters out.

Regards,

Stephane Faroult
Oriole
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Stephane Faroul
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Farnsworth, Dave
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Undocumented Parameters

2002-05-30 Thread Jack Silvey

Lee,

Here ya go. Remember, be *careful* with those hidden
params, cowboy. Oracle does not support changing them,
and you can really hose the system with em, perhaps
beyond the normal capacity to repair it. As they say,
this script is unsupported and for educational
purposes only, but can come in handy on occasion.

Did I say be careful? Might want to buff up the resume
before you start acting like the Mad Hidden Parameter
Scientist.

;)



jack silvey


--
--
-- author:  jack silvey
-- about:   shows hidden and non-hidden parameters
--  usually must connect as sys
-- usage:   @params
--
--
--

column name format a45
column description format a70
column value format a20
set lines 145
set pages 

select  nam.ksppinm name,
val.KSPPSTVL value
fromx$ksppi nam,
x$ksppsvval
where nam.indx = val.indx
order by 1
/


--- Robertson Lee - lerobe [EMAIL PROTECTED]
wrote:
 Someone posted a bit of SQL to list out the
 undocumented parameters and
 guess what ... I deleted it. Could someone repost
 please ??
  
 TIA
  
 Lee
 
  
 
 
 The information contained in this communication is
 confidential, is intended only for the use of the
 recipient
 named above, and may be legally privileged. If the
 reader 
 of this message is not the intended recipient, you
 are
 hereby notified that any dissemination, distribution
 or
 copying of this communication is strictly
 prohibited.  
 If you have received this communication in error,
 please 
 re-send this communication to the sender and delete
 the 
 original message or any copy of it from your
 computer
 system.
 


__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Jack Silvey
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).