1,查看系统中有哪些表空间
select distinct t.tablespace_name from dba_tables t
2,查看系统指定表空间下有哪些表
select distinct t.table_name from dba_tables t where t.tablespace_name='USERS'
3,查看用户拥有哪些表
select distinct t.table_name from dba_tables t where t.owner='DBZYANA'
4,查看指定表空间的用户有哪些
select distinct t.username from dba_users t where t.default_tablespace='USERS'