Horje
oracle grant on all tables in schema Code Example
oracle grant on all tables in schema
BEGIN
   FOR R IN (SELECT owner, table_name FROM all_tables 
             WHERE owner='OTHER_SCHEMA') LOOP
      EXECUTE IMMEDIATE 'GRANT SELECT, INSERT, UPDATE, DELETE ON ' ||
                         R.owner || '.' || R.table_name || ' TO MY_SCHEMA';
   END LOOP;
END;




Sql

Related
sql server today minus n Code Example sql server today minus n Code Example
oracle grant select on schema Code Example oracle grant select on schema Code Example
Mysql table variables Code Example Mysql table variables Code Example
drop database using terminal postgres Code Example drop database using terminal postgres Code Example
how to select an index in oracle sql Code Example how to select an index in oracle sql Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7