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;