1.用户的默认表空间,可以在创建用户时指定
create user username identified by password default tablespace tablespace_name;
2.用户的默认表空间,如果没有为用户指定,则数据库中所有用户的默认表空间是USERS 。
alter user username default tablespace tablespace_name;
3.查看用户的默认表空间
set linesize 200;
col username for a15;
col account_status for a18;
col default_tablespace for a26;
select username,account_status,default_tablespace,created from dba_users where username = 'USERNAME';