oracle如何将用户与表空间进行关联
2个回答
展开全部
1.创建用户的时候定义默认表空间
SQL>create user username identified by password default tablespace tablespace_name;
2.修改用户默认表空间
SQL>alter user username default tablespace tablespace_name;
3.拥有unlimited tablespace权限的用户可在任意表空间上操作。
4.没有unlimited tablespace权限的用户要在非默认表空间上操作需要在目标表空间有一定的配额,即在目标表空间分配一定的空间给用户。
SQL>alter user username quota 100m on tablespace_name2;
SQL>create user username identified by password default tablespace tablespace_name;
2.修改用户默认表空间
SQL>alter user username default tablespace tablespace_name;
3.拥有unlimited tablespace权限的用户可在任意表空间上操作。
4.没有unlimited tablespace权限的用户要在非默认表空间上操作需要在目标表空间有一定的配额,即在目标表空间分配一定的空间给用户。
SQL>alter user username quota 100m on tablespace_name2;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询