Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> rights from a procedure
I am trying to run this procedure
Procedure JUNK as
BEGIN
EXECUTE IMMEDIATE 'ALTER TABLE rsnet.pos MODIFY PARTITION
REVLON_D_CVS_199701 DEALLOCATE UNUSED KEEP 0';
END;
this procedure is in the LOADER schema and owned by it..
I am trying to alter a table in the RSNET schema..
I CAN run this from the command line, just not in a procedure.
I am in 8.1.5
RSNET & LOADER have the DBA role granted..
also
LOADER has the following rights granted explicitly..
ALTER ANY TABLE
CREATE ANY INDEX
DROP ANY TABLE
ALTER ANY TRIGGER
UNLIMITED TABLESPACE
EXECUTE ANY TYPE
GLOBAL QUERY REWRITE
WHY do I get a ORA-01031: insufficient privileges error when In try to
run JUNK from LOADER?
-Ken Received on Wed Oct 27 1999 - 14:55:00 CDT
![]() |
![]() |