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: Find out what sys privileges a user has

RE: Find out what sys privileges a user has

From: Trassens, Christian <CTrassens_at_uni2.es>
Date: Tue, 9 Jan 2001 15:02:30 +0100
Message-Id: <10736.126116@fatcity.com>


John

Catproc.sql usually grants the execute privilege of each to public. However you could see it by yourseft:

col table_name format a30
col privilege format a20
col grantee format a20
select table_name,grantee,privilege from sys.dba_sys_privs where table_name in ( select object_name from sys.dba_objects where object_type='PACKAGE' and owner='SYS);

Regards.

> -----Mensaje original-----
> De: John Dunn [SMTP:john.dunn_at_sefas.co.uk]
> Enviado el: martes 9 de enero de 2001 12:56
> Para: Multiple recipients of list ORACLE-L
> Asunto: Find out what sys privileges a user has
>
> How can I find out what privileges a user has on what sys packages, (from
> sqlplus command line)
>
> John
> .
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: John Dunn
> INET: john.dunn_at_sefas.co.uk
>
> 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 Tue Jan 09 2001 - 08:02:30 CST

Original text of this message

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