Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: grant index permissions to tablespace?
Kev
You don't create indexes on a tablespace, so I'm assuming that's a typo. The user will need a group of privileges. Which ones will depend on whether they own the table to be indexed or not. If they own the table, they simply need a quota on tablespace ind:
alter user user1 quota xM/unlimited on ind;
where if you want to limit the amount of space you set it to x Mb (the first option) or if you don't want to limit the amount of space you set it to unlimited (the second option).
If they don't own the table to be indexed, they will either need to be granted the INDEX privilege by the table owner or have the CREATE ANY INDEX system privilege.
HTH. Pete
kev wrote:
> Hi,
>
> I just can't make this work - I want to give user 'user1' the ability to
> create indexes on tablespace 'ind'.
>
> What's the command?
>
> thanks,
>
> - Kev
Received on Mon Mar 13 2000 - 11:37:38 CST
![]() |
![]() |