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: Listing all users for a database

Re: Listing all users for a database

From: E.R.Geem <ergeem_at_yahoo.com>
Date: 20 Sep 2001 12:34:43 -0700
Message-ID: <2ed13f06.0109201134.4da81d7f@posting.google.com>


Try table fnd_users.
If that table isn't known either just do the following select to hve a list of the tables related to ' users':

Select *
from cat
where table_name like '%USER%';

This wil retrieve all the tables that have the syntax USER in it (do it uppercase), and hopefully you hav located the users table.

You can also look at the table dba_objects, it need a bit more knoledgement but it may help you out to expore the objects.

Keep cool.

E. Received on Thu Sep 20 2001 - 14:34:43 CDT

Original text of this message

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