PUBLIC pseudo user
select table_name, grantor, privilege from dba_tab_privs where GRANTEE='PUBLIC';
If we run this query, we can see so many privileges given to pseudo role PUBLIC.
And also by default, all users have the privileges which are given to PUBLIC. If we connect to the database useing 3rd party tools, like the BO XI, it shows all the schemas and the privileges which are there with PUBLIC.
can we do something in which, the users dont use the privileges granted to PUBLIC.
thanks!