DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: Hidden parameters

  1. #1
    Join Date
    May 2000
    Location
    Budapest
    Posts
    9

    Angry

    How to extract all hidden parameters from ORACLE to get a full list of that.

  2. #2
    Join Date
    Dec 2000
    Location
    Ljubljana, Slovenia
    Posts
    4,439
    Connected as SYS, run the following query:

    select a.ksppinm name, b.ksppstvl value
    from x$ksppi a, x$ksppcv b
    where a.indx = b.indx
    and substr(a.ksppinm,1,1) = '_';
    Jurij Modic
    ASCII a stupid question, get a stupid ANSI
    24 hours in a day .... 24 beer in a case .... coincidence?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width