你只给你建的用户授予connect权限。
然后授予用户使用某一表空间的权限。
create user test identified by test default tablespace users
temporary tablespace temp;
grant connect to test;
alter user test quota unlimited on users;
我怎么实现让一个用户,只有对某个表空间的的而不能对其他的表空间,进行访问, 或是只能对某个其他或自
comments powered by Disqus