关于表空间的操作

查看所有表空间信息:

select tablespace_name,status,allocation_type from dba_tablespaces;

 

查看每个用户的默认表空间:

select user_id,username,default_tablespace from dba_users;

你可能感兴趣的:(user,Allocation)