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

Home -> Community -> Usenet -> c.d.o.server -> Re: users and their privileges

Re: users and their privileges

From: Daniel Morgan <dmorgan_at_exesolutions.com>
Date: Mon, 29 Jul 2002 20:31:42 GMT
Message-ID: <3D45A5E2.53C5994C@exesolutions.com>


Joe Philip wrote:

> Do anybody have a script to find the users and their privileges of a
> database?

No need for any script.

Just perform the following:

SELECT object_name
FROM all_objects
WHERE object_name LIKE '%PRIV%';

Then do a describe on what you find and all of the information is available with just a SQL statement or two.

Daniel Morgan Received on Mon Jul 29 2002 - 15:31:42 CDT

Original text of this message

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