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.
Ezana Answered question 03/10/2022
Oracle, Open source , Big data, CI,CD, version control, GITLab, GitHub, data warehouse, BI, AI, Q& A , Data science
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.