Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: admin user for one tablespace
Don't want to do GRANT CREATE ANY ... or GRANT DROP ANY ... because the user will have access to create and drop any table in Database.
Try revoking:
revoke unlimited tablespace to <user>;
And then, grant quota to user on this tablespace:
alter user <user> quota unlimited on <tablespace_name>;Received on Wed Oct 07 1998 - 15:13:30 CDT