查看 oracle 中有那些表

可以通过查询语句对系统表 user_tables 进行查询。

例如要列出用户表中都存在那些表,它们所使用的表空间是那个,可以用下面的语句进行查询

select table_name,tablespace_name from user_tables;