Mereba Technology
Oracle, Open source , Big data, CI,CD, version control, GITLab, GitHub, data warehouse, BI, AI, Q& A , Data science
Home » Questions » How to find privileges and roles granted to a user in oracle
How to find privileges and roles granted to a user in oracle?
We can use the following scripts to find privileges and roles granted to a user in oracle:
select
privilege
from
dba_sys_privs
where
grantee=
'Mereba'
order
by
1;
where “mereba” is the oracle user.