Re: 100% CPU utilization, urgent

2003-01-21 Thread Vladimir Begun
Stephane Faroult wrote: I hate converting between decimal and hexadecimal :-). You can use TO_CHAR for that :) I am afraid age is showing ... Did not get you. Your routine is fine except the fact it can be faster. When I was 12 it was my first asm (ix86) exercise -- hex2dec/dec2hex routine

RE: Re: 100% CPU utilization, urgent

2003-01-21 Thread Jamadagni, Rajendra
Title: RE: Re: 100% CPU utilization, urgent Why ?? oraclei@rhea-ACPT1> sys SQL*Plus: Release 9.2.0.2.0 - Production on Tue Jan 21 07:33:42 2003 Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved. Connected. SQL> select to_char(12345,'') from dua

RE: Re: 100% CPU utilization, urgent

2003-01-21 Thread Stephane Faroult
> >Stephane Faroult wrote: >> I hate converting between decimal and hexadecimal >:-). > >You can use TO_CHAR for that :) I am afraid age is showing ... Regards, Stephane Faroult Oriole -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Stephane Faroul INET: [EMAIL PRO

RE: Re: 100% CPU utilization, urgent

2003-01-21 Thread Stephane Faroult
> >Stephane Faroult wrote: >> I hate converting between decimal and hexadecimal >:-). > >You can use TO_CHAR for that :) I am afraid age is showing ... Regards, Stephane Faroult Oriole -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Stephane Faroul INET: [EMAIL PRO

Re: Re: 100% CPU utilization, urgent

2003-01-20 Thread Jared Still
There may be some utility at sysinternals.com that does what you require. On Monday 20 January 2003 03:49, Hussain Ahmed Qadri wrote: > Hi, > > It's the Oracle.exe which is taking 100%. V$session tells me about the > users connected to the database, but no the info about which user is taking > w

Re: 100% CPU utilization, urgent

2003-01-20 Thread Vladimir Begun
Stephane Faroult wrote: I hate converting between decimal and hexadecimal :-). You can use TO_CHAR for that :) -- Vladimir Begun The statements and opinions expressed here are my own and do not necessarily represent those of Oracle Corporation. -- Please see the official ORACLE-L FAQ: http://ww

Base conversion - WAS: RE: 100% CPU utilization, urgent

2003-01-20 Thread Richard Ji
please help me > understand this? > > Thanks and regards > > Hussain > > -Original Message- > From: Thomas Day [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 20, 2003 7:00 PM > To: Multiple recipients of list ORACLE-L > Subject: Re: 100% CPU utilization, urg

Re: 100% CPU utilization, urgent

2003-01-20 Thread Stephane Faroult
otal CPU time? Can you please help me > understand this? > > Thanks and regards > > Hussain > > -Original Message- > From: Thomas Day [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 20, 2003 7:00 PM > To: Multiple recipients of list ORACLE-L > Subjec

RE: 100% CPU utilization, urgent

2003-01-20 Thread Koivu, Lisa
Title: RE: 100% CPU utilization, urgent Thanks Jeff for your detailed explanation. (Can I please have Unix back now???!) Have a great day. Lisa -Original Message- From: Jeff Herrick [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 11:40 AM To: Multiple recipients of

Re: 100% CPU utilization, urgent

2003-01-20 Thread Thomas Day
Does this help? select p.spid "ID_THREAD" , p.background "BACKGROUND" , b.name "NAME" , s.sid "SID" , s.serial# "SERIAL#" , NVL(S.USERNAME, 'SYS') "USERNAME" , s.status "STATUS" , s.osuser "OSUSER" , s.program "PROGRAM" , S.TYPE , T.VALUE "CPU" from sys.v_$process p , sys.v_$bgprocess b , sys.v

RE: 100% CPU utilization, urgent

2003-01-20 Thread Thomas Day
@skm.org.pk> cc: Sent by: root Subject: RE: 100% CPU ut

RE: 100% CPU utilization, urgent

2003-01-20 Thread Thomas Day
uot;Koivu, Lisa" @efairfield.com> cc: Sent by: root Subject: RE: 100% C

Re: 100% CPU utilization, urgent

2003-01-20 Thread Tim Gorman
Title: RE: 100% CPU utilization, urgent We seem to have switched email threads, but the value from the VALUE column in the query on V$SESSTAT is centiseconds of CPU consumed by the session.  Although V$SESSTAT is not updated continuously (but rather in "spurts"), you should see a c

RE: 100% CPU utilization, urgent

2003-01-20 Thread Rick_Cale
uot;Koivu, Lisa" field.com> cc: Sent by: Subject: RE: 100% C

RE: 100% CPU utilization, urgent

2003-01-20 Thread Koivu, Lisa
Title: RE: 100% CPU utilization, urgent Thanks Rick.  I knew there was something missing here.  And if I'm not mistaken, it's my brain.  I'll dig into it and see what I can learn with the brain cells I have left. Have a great afternoon. Lisa -Original Message---

RE: 100% CPU utilization, urgent

2003-01-20 Thread Jeff Herrick
On Mon, 20 Jan 2003, Koivu, Lisa wrote: > Thomas, thanks for your post. > > However I don't see where I can match the threads on NT to what I see in > Task Manager. Am I missing something? > > To be more explicit, here's what I've got: > Lisa, The point you're missing is that Task Manager sho

RE: 100% CPU utilization, urgent

2003-01-20 Thread Koivu, Lisa
Title: RE: 100% CPU utilization, urgent Thomas, thanks for your post.  However I don't see where I can match the threads on NT to what I see in Task Manager.  Am I missing something?  To be more explicit, here's what I've got: SQL> select * from dba_nt_threads;

RE: 100% CPU utilization, urgent

2003-01-20 Thread Hussain Ahmed Qadri
Title: RE: 100% CPU utilization, urgent Thanks for the script, I would like to know how would I interpret the VALUES column, I mean what does it stand for. If the value of CPU used for a particular SID is 2000, what does that mean? Is it the time, in 1/100 th of seconds of the total CPU time

RE: Oracle SPID vs. NT PIDs (was :100% CPU utilization, urgent)

2003-01-20 Thread Broodbakker, Mario
>Von: Broodbakker, Mario [mailto:[EMAIL PROTECTED]] >Gesendet am: Montag, 20. Januar 2003 13:59 >An: Multiple recipients of list ORACLE-L >Betreff: RE: 100% CPU utilization, urgent > >Frank, > >I'm pretty sure

Re: 100% CPU utilization, urgent

2003-01-20 Thread Tim Gorman
Title: 100% CPU utilization, urgent It would be more appropriate to determine whether SMON is consuming all the CPU first, before sending someone on some irrelevant wild-goose chase for "fragmented tablespaces".  More effective to first look for basic facts than to go off chasing

Re: 100% CPU utilization, urgent

2003-01-20 Thread Thomas Day

Oracle SPID vs. NT PIDs (was :100% CPU utilization, urgent)

2003-01-20 Thread Foelz.Frank
tag, 20. Januar 2003 13:59 >An: Multiple recipients of list ORACLE-L >Betreff: RE: 100% CPU utilization, urgent > >Frank, > >I'm pretty sure they do: > >SQL> select spid,program from v$process; > >SPID PROGRAM >-

RE: 100% CPU utilization, urgent

2003-01-20 Thread Broodbakker, Mario
Frank < >Von: Broodbakker, Mario [mailto:[EMAIL PROTECTED]] >Gesendet am: Montag, 20. Januar 2003 11:34 >An: Multiple recipients of list ORACLE-L >Betreff: RE: 100% CPU utilization, urgent > >If I remember correctly (from a previous NT-life): >v$process.spid maps to

RE: 100% CPU utilization, urgent

2003-01-20 Thread Chris Stephens
Title: 100% CPU utilization, urgent we had a problem with cpu usage and it ended up being the 'intelligent' agent.  ...after some consideration we decide there wasn't any reason we HAD to have the agent running so we just shut it down.   ...just a shot in the dark.   chris

RE: Re: 100% CPU utilization, urgent

2003-01-20 Thread Jeremiah Wilton
On Mon, 20 Jan 2003, Hussain Ahmed Qadri wrote: > It's the Oracle.exe which is taking 100%. V$session tells me about the users > connected to the database, but no the info about which user is taking what > percentage of CPU. How can I identify which Oracle process (like DBSNMP or > anyother) it is

RE: Re: 100% CPU utilization, urgent

2003-01-20 Thread Hussain Ahmed Qadri
Title: RE: Re: 100% CPU utilization, urgent Hi, It's the Oracle.exe which is taking 100%. V$session tells me about the users connected to the database, but no the info about which user is taking what percentage of CPU. How can I identify which Oracle process (like DBSNMP or anyother)

RE: 100% CPU utilization, urgent

2003-01-20 Thread Broodbakker, Mario
[EMAIL PROTECTED]] >Gesendet am: Montag, 20. Januar 2003 11:34 >An: Multiple recipients of list ORACLE-L >Betreff: RE: 100% CPU utilization, urgent > >If I remember correctly (from a previous NT-life): >v$process.spid maps to the NT thread_id. The thread(s) causing >this can

RE: Re: 100% CPU utilization, urgent

2003-01-20 Thread Hussain Ahmed Qadri
Title: RE: Re: 100% CPU utilization, urgent When it happens, it happens consistently, for hours, non-stop. I hope there is a way to find out this information about the operating system process. Thanks and regards Hussain -Original Message- From: Naveen Nahata [mailto:[EMAIL

RE: 100% CPU utilization, urgent

2003-01-20 Thread Foelz.Frank
lto:[EMAIL PROTECTED]] >Gesendet am: Montag, 20. Januar 2003 11:34 >An: Multiple recipients of list ORACLE-L >Betreff: RE: 100% CPU utilization, urgent > >If I remember correctly (from a previous NT-life): >v$process.spid maps to the NT thread_id. The thread(s) causing >this can be foun

RE: 100% CPU utilization, urgent

2003-01-20 Thread Broodbakker, Mario
If I remember correctly (from a previous NT-life): v$process.spid maps to the NT thread_id. The thread(s) causing this can be found probably by looking at pstat or perfmon: here you can see the cpu consumption. Also you can probably deduce it from v$sesstat's 'cpu used by this session': it will

RE: Re: 100% CPU utilization, urgent

2003-01-20 Thread Naveen Nahata
In windows NT you cannot map the OS proces with v$session information. I hope there is a way to get the thread information and map it to V$SESSION, but in Task Manager it will only show as Oracle.exe for all the processes. If you find out how to get the thread information and map it to v$session,

RE: Re: 100% CPU utilization, urgent

2003-01-20 Thread Stephane Faroult
Hussain, Good advice. First thing to do is to identify WHICH process or thread is using CPU. Once you have an OS identifier, check V$SESSION to see what it is exactly. I would not have as dark a vision as Pankaj - I mean it is not necessarily a virus or Trojan horse. I have seen quite a numbe

Re: 100% CPU utilization, urgent

2003-01-20 Thread Nikunj Gupta
Title: 100% CPU utilization, urgent Check for fragmented tablespaces... There are chances that SMON is active and coalescing tablespaces.   - Original Message - From: Naveen Nahata To: Multiple recipients of list ORACLE-L Sent: Sunday, January 19, 2003 10:48 PM

Re: 100% CPU utilization, urgent

2003-01-19 Thread Pankaj Agarwal
Hi, Check the processes runnning and identify the process which i resulting in 100% CPU utilization. you can check it by pressing ctrl+shift+esc. There will be a tab Processes. Under thi tab it will how each process that i running on your machine. My own experience says it will a trojan or some

RE: 100% CPU utilization, urgent

2003-01-19 Thread Naveen Nahata
Title: 100% CPU utilization, urgent Hussain,   We have a similar environment and we also hit 100%CPU utilization at times. But we never face problem because of tht. the DB keeps working fine during 100% CPU utilization also.   Are you having a problem of logging into the DB during tht time

100% CPU utilization, urgent

2003-01-19 Thread Hussain Ahmed Qadri
Title: 100% CPU utilization, urgent HI all We have a consistent problem of CPU utilization 100%. We have had this problem since Saturday, but it automatically subsided, I mean went back to normal after a few hours, and remained normal on Sunday as well. But its back to 100% since morning