Question : How can I list the privileges assigned to a user in Oracle 10g?

Please explain to me how do I list out the privileges currently assigned to the user.

Answer : How can I list the privileges assigned to a user in Oracle 10g?

try
select * from user_role_privs
where grantee in ('PUBLIC', :USERNAME);

to get the roles a user is granted
Random Solutions  
 
programming4us programming4us