oracle租户 普通业务租户权限问题

使用ob 3.2.2 版本 过程中遇到以下疑惑:

问题一: sys用户登陆的业务租户授予权限如下:
给ttest用户tt1 下所有表查询权限
obclient> grant select on tt1.* to ttest;
Query OK, 0 rows affected (0.01 sec)

ttest 用户登陆 无法查询:
obclient> select * from tt1.test9;
ORA-01031: insufficient privileges

是不支持 按用户授予select 查询权限吗?

问题二: sys用户登陆的业务租户授予权限如下:
grant alter ,delete,insert,select ,update,references,execute,index on tt1.ac08 to ttest;

ttest 用户登陆 :
obclient> create index tt1.sc09 on tt1.ac08(“z”);
Query OK, 0 rows affected (1.75 sec)
obclient> drop index tt1.sc09;
ORA-01031: insufficient privileges

按官网 index 权限有create 和 drop index 的权限,但是在执行时报错了。

问题三:
sys用户登陆的业务租户授予权限如下:
grant create any table to ttest;
grant drop any table to ttest;

这种权限如果需要具体到表该怎么授予呢?