You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(select GRANTEE, 'grant '|| PRIVILEGE || ' on '||owner||'.'||TABLE_NAME||' to '||GRANTEE||(case GRANTABLE when 'YES' then ' WITH GRANT OPTION' end)||';' "COMANDO"
from dba_tab_privs
UNION ALL
select GRANTEE, 'grant '|| PRIVILEGE || ' to '||GRANTEE||(case ADMIN_OPTION when 'YES' then ' WITH ADMIN OPTION' end)||';' "COMANDO"
from dba_sys_privs
UNION ALL
select GRANTEE, 'grant '|| GRANTED_ROLE || ' to '||GRANTEE||(case ADMIN_OPTION when 'YES' then ' WITH ADMIN OPTION' end)||';' "COMANDO"