Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: How to grant privileges on all the tables of owner1 to owner2?
try something like this:
set serveroutput on size 1000000;
declare
v_sql varchar2(4000);
cursor c_cur is select table_name from user_tables;
begin
begin
for v_cur in c_cur loop
v_sql = 'grant select,insert,update,delete on
'||v_cur.table_name||' to owner2';
dbms_output.put_line('did '||v_sql);
execute immediate v_sql;
exception
when others then
dbms_output.put_line ('problem with '||v_sql);
end;
end loop;
end;
/
jack silvey
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Jack Silvey INET: jack_silvey_at_yahoo.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Fri May 31 2002 - 11:08:38 CDT
![]() |
![]() |