Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: parse cpu and recursive cpu

Re: parse cpu and recursive cpu

From: Tanel P?der <tanel.poder.003_at_mail.ee>
Date: Tue, 29 Mar 2005 19:57:17 +0100
Message-ID: <008601c53491$21173b00$0301a8c0@porgand>


Hi,

Do not use statistic numbers in your scripts, these might change over versions or differ by platforms. Use only statistic names.

For example stat# 233 is branch node splits in my 10.1.0.3 Linux/32bit system.

SQL> select statistic#, name from v$statname where statistic# in (8,233);

STATISTIC# NAME

---------- ----------------------------------------------------------------
         8 recursive cpu usage
       233 branch node splits

Tanel.

> Hello The Human Fly,
>
> just do the below query.:-)
>
> select * from v$mystat where statistic# in (8,233);
>

--
http://www.freelists.org/webpage/oracle-l
Received on Tue Mar 29 2005 - 14:00:56 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US