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

Thread: Translation Please/ V$sysstat

  1. #1
    Join Date
    Jan 2001
    Posts
    3,134

    Question

    SQL> select STATISTIC#, NAME, CLASS, VALUE
    from v$sysstat
    order by 2


    STATISTIC# NAME CLASS VALUE
    15 session uga memory 1 9.709E+11
    97 redo size 2 4.871E+09

    Can someone explain what these values mean, the last time I checked "E" was not a number.

    Thanks
    MH

  2. #2
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    It's just your format from sqlplus. For example:
    Code:
    SQL> l
      1* select 123*1000000000 theVal from dual
    SQL> /
    
        THEVAL
    ----------
    1.2300E+11
    
    SQL> col theval for 999999999999.99
    SQL> /
    
              THEVAL
    ----------------
     123000000000.00
    Jeff Hunter

  3. #3
    Join Date
    Jan 2001
    Posts
    3,134

    Talking

    You are a man amongst men, thanks.
    MH

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