DBAsupport.com Forums - Powered by vBulletin
Page 3 of 3 FirstFirst 123
Results 21 to 23 of 23

Thread: sorting error

  1. #21
    Join Date
    Apr 2001
    Location
    Czechia
    Posts
    712
    The hidden parameters aren't visible in the v$parameter view and this is why the "show parameter" doesn't work. Try this query, works for me. You have to be logged as sys.

    Code:
    select
       a.ksppinm name,
       b.ksppstvl value,
       b.ksppstdf deflt,
       decode
       (a.ksppity, 1,
       'boolean', 2,
       'string', 3,
       'number', 4,
       'file', a.ksppity) type,
       a.ksppdesc description
    from
       sys.x$ksppi a,
       sys.x$ksppcv b
    where
       a.indx = b.indx
    and
       a.ksppinm = '&parameter_name'
    /
    Ales
    The whole difference between a little boy and an adult man is the price of toys

  2. #22
    Join Date
    Oct 2008
    Location
    Chandigarh, India
    Posts
    322
    well i got it now..thanks
    lucky

  3. #23
    Join Date
    Oct 2008
    Location
    Chandigarh, India
    Posts
    322
    @ ales and PAVB, i got sth to add to ur discussion..
    though its only another discussion forum n not a credible source..
    http://www.oracle-base.com/forums/vi...st=0&sk=t&sd=a
    lucky

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