script will list unnecessary privs in the APPLSYSPUB account
col GRANTOR format a24 col PRIVILEGE format a14 col TABLE_NAME format a32 select GRANTOR,PRIVILEGE, TABLE_NAME from DBA_TAB_PRIVS where grantee = ‘APPLSYSPUB’ and privilege in (‘SELECT’,’INSERT’,’EXECUTE’,’DELETE’) and…
Read More