DBA FUS‎ > ‎

Database Link Permissions

posted Sep 13, 2010, 5:43 AM by Sachchida Ojha
select grantee||': '||privilege from dba_tab_privs
where grantee <> 'DELETE_CATALOG_ROLE'
and table_name='LINK$'
and grantee not in (select grantee from dba_role_privs where granted_role='DBA');
Comments