Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Can I Check Who Is Using The System?

Re: Can I Check Who Is Using The System?

From: Steve Johnson <robertoc_at_fyiowa.infi.net>
Date: 1997/11/13
Message-ID: <346B2166.16E6@fyiowa.infi.net>#1/1

Check the V$SESSION view:
SELECT username
  FROM v$session
 WHERE username is not null;

Steve J.

ªü´ö Thenardier wrote:
>
> More than 1 user can logon to an Oracle database at the same time.
> Does Oracle provide any machanism to check how many user is using
> the database (even if idle ones) and who?
>
> Should i create a table to keep all logged-on users? A bit stupid,
> isn't it?
>
> Thanx!
>
> Thenard
Received on Thu Nov 13 1997 - 00:00:00 CST

Original text of this message

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