Useful SQL Query
Grant full access to all tables in particular schema to role
select ‘grant select,insert,update,delete on ‘ || owner || ‘.’ || table_name || ‘ to pics_general; ‘ from dba_tables where owner=’PICS’;
No comments yet
select ‘grant select,insert,update,delete on ‘ || owner || ‘.’ || table_name || ‘ to pics_general; ‘ from dba_tables where owner=’PICS’;