Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ORA 01720 :grant option does not exist

592323Mar 31 2008 — edited Mar 31 2008
Hi,

Need to grant a select privilege on a view in another schema to a new user
The user was created with

create user newuser identified by password default tablespace users temporary tablespace temp;

no quota mentioned as i did not want the user to create any objects.

then connect role was allocated to that user

grant connect to newuser;

after that i logged into the user where the view already exists.

grant select on viewname to newuser.

It gave me an error

ORA -01720 grant option does not exist for the table XXXX.

This table is internally present in the select statement that composed the view.

I also gave

grant select on XXX to the newuser but still it throws the same error.

database 10.2.0.3
env:windows 2003

Thanks
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 28 2008
Added on Mar 31 2008
3 comments
3,240 views