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: Users accessing tables

RE: Users accessing tables

From: Kevin Kostyszyn <kevin_at_dulcian.com>
Date: Fri, 30 Mar 2001 08:50:20 -0800
Message-ID: <F001.002DD3A8.20010330084554@fatcity.com>

Thank you very much Ana, that is a very useful littel scripts. Kevin

-----Original Message-----

achoto_at_american.edu
Sent: Friday, March 30, 2001 11:26 AM
To: Multiple recipients of list ORACLE-L

Try

select   s.USERNAME,
         s.OSUSER,
         s.SID,
         a.OWNER,
         a.OBJECT,
         a.TYPE
from     sys.v_$session s, sys.v_$access a
where    s.SID = a.SID
and      s.USERNAME not in ('SYS','SYSTEM')
and      a.OWNER not in ('SYS','SYSTEM')
order by s.USERNAME, a.OBJECT, a.TYPE;

Ana E. Choto
Systems Programmer
American University
e-Operations

                    "Kevin
                    Kostyszyn"           To:     Multiple recipients of list
ORACLE-L <ORACLE-L_at_fatcity.com>
                    <kevin_at_dulcia        cc:
                    n.com>               Subject:     Users accessing tables
                    Sent by:
                    root_at_fatcity.
                    com


                    03/30/01
                    10:35 AM
                    Please
                    respond to
                    ORACLE-L






Hey all,
           Is there anyway to see which tables users are accessing at
certain point in
time?

Sincerely,
Kevin Kostyszyn
DBA
Dulcian, Inc
www.dulcian.com
kevin_at_dulcian.com

--

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

Author: Kevin Kostyszyn
  INET: kevin_at_dulcian.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: achoto_at_american.edu

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: Kevin Kostyszyn
  INET: kevin_at_dulcian.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 Fri Mar 30 2001 - 10:50:20 CST

Original text of this message

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