Oracle
 sql >> Database >  >> RDS >> Oracle

Concedi la selezione su tutti i tavoli di proprietà di un utente specifico

Bene, non è una singola affermazione, ma è il più vicino possibile a Oracle:

BEGIN
   FOR R IN (SELECT owner, table_name FROM all_tables WHERE owner='TheOwner') LOOP
      EXECUTE IMMEDIATE 'grant select on '||R.owner||'.'||R.table_name||' to TheUser';
   END LOOP;
END;