Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Users accessing tables
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 atcertain point in
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-LReceived on Fri Mar 30 2001 - 10:29:10 CST
(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).
![]() |
![]() |