This is not working. I only get the column names with no rows of data. Just the column names when I run this query:
select Grantee,'Granted Through Role' as Grant_Type, role, table_name
from role_tab_privs rtp, dba_role_privs drp
where rtp.role = drp.granted_role
and table_name = 'DATA_MART'...