| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> help on reading real time from utlstat
this is a real silly question, but here i go.
i have this bad coded program that is making a lot of network traffic.
the Remark says that total times are in hundreths of secconds.
but i cant make sense of that number (althoug its ovbius that is really high).
178802867 since its hundreds it should be
1788028 real seconds then 1788028/60
29800 minutes? it doesnt seem right since....
START_TIME END_TIME
------------------ ------------------
then my actual question is..... the numbers are in miliseconds? miliseconds would make sense.
and the real number in minutes shall be....
29.80 minutes waiting for SQL*Net message from client.
Someone enlight me please
: \
SVRMGR> Rem that event.
SVRMGR> select n1.event "Event Name",
2> n1.event_count "Count",
3> n1.time_waited "Total Time",
4> round(n1.time_waited/n1.event_count, 2) "Avg Time"
5> from stats$event n1
6> where n1.event_count > 0
7> order by n1.time_waited desc;
Event Name Count Total Time Avg Time
-------------------------------- ------------- -------------
-------------
SQL*Net message from client 554879 178802867
322.24
...
...
..
START_TIME END_TIME
------------------ ------------------
![]() |
![]() |