Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: PRIVILEGES
This one from Rene Nyffenegger : http://www.adp-gmbh.ch/ is my prefered
:
unset ENTER_NAME
typeset -u ENTER_NAME
if [ -n "$PAR1" ];then
ENTER_NAME=$PAR1
else
echo " Enter user name ==> \c"
read ENTER_NAME
fi
sqlplus -s "$CONNECT_STRING" <<EOF
ttitle skip 2 'MACHINE $HOST - ORACLE_SID : $ORACLE_SID ' right
'Page:' format 999 sql.pno skip 2
column nline newline
set pagesize 66 linesize 85 termout on heading off pause off embedded
off verify off
select 'Date - '||to_char(sysdate,'Day Ddth Month YYYY HH24:MI:SS'),
'Username - '||USER nline , 'List Role and grants hierarchy for a user ' nline from sys.dual/
select
lpad(' ', 4*level) || granted_role "User, his roles and privileges"
from
(
/* THE USERS */
select
null grantee, username granted_role from dba_users where username like ('%$ENTER_NAME%')
grantee, granted_role from dba_role_privs
Output :
: TRCANLZR
User, his roles and privileges
TRCANLZR
ALTER SESSION CREATE PROCEDURE CREATE PUBLIC SYNONYM CREATE SEQUENCE CREATE SESSION CREATE TABLE CREATE VIEW DROP PUBLIC SYNONYM EXECUTE READ SELECT SELECT_CATALOG_ROLE EXECUTE HS_ADMIN_ROLE EXECUTE SELECT SELECT WRITE
Query DBA_TAB_PRIVS .
Remember that the GRANTEE could also be a ROLE so you'd have to also
query DBA_ROLE_PRIVS to see who has been granted the ROLE.
Hemant
> Hi, > > I want to see which views has been granted to whome? > Which table has all object privileges? > Thx > >
Hemant K Chitale
http://web.singnet.com.sg/~hkchital
-- http://www.freelists.org/webpage/oracle-l -- http://www.freelists.org/webpage/oracle-lReceived on Mon Sep 18 2006 - 02:56:35 CDT
![]() |
![]() |