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: Oracle traffic

Re: Oracle traffic

From: <Jared.Still_at_radisys.com>
Date: Wed, 10 Jul 2002 08:13:24 -0800
Message-ID: <F001.004939FA.20020710081324@fatcity.com>


Try this.

Jared

select

   decode(class,

      1,'User',
      2,'Redo',
      4,'Enqueue',
      8,'Cache',
      16,'OS',
      32,'Parallel Server',
      64,'SQL',
      128,'Debug'

   ) class_name
   ,name
   ,value
from v$sysstat
where upper(name) like '%SQL*NET%'
order by class_name, name
/

"Witold Iwaniec" <wiwaniec_at_novalistech.com> Sent by: root_at_fatcity.com
07/10/2002 07:23 AM
Please respond to ORACLE-L  

        To:     Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com>
        cc: 
        Subject:        Oracle traffic


Hi DBAs

Are there any tools that would show me the traffic coming in and out of the database
when I run my application?
We have used sniffer software for the network traffic but sometimes we get questions
related to the numbers from the database side. I believe the sniffers show what gets
send over the network including the packets info, address, etc. I wonder if I could get
the numbers just for the data?

Thanks in advance

Witold



Witold Iwaniec
Sr Software Developer
NovaLIS Technologies
wiwaniec_at_novalistech.com
http://www.novalistech.com

--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Witold Iwaniec
  INET: wiwaniec_at_novalistech.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).

--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author:
  INET: Jared.Still_at_radisys.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed Jul 10 2002 - 11:13:24 CDT

Original text of this message

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