oracle如何查看有哪些表?

来源:百度知道 编辑:UC知道 时间:2024/06/25 10:43:41
表是储存在表空间里边的吧?
那么怎么查看一个表空间里有哪些表?

另外,oracle有图形用户界面的吗?就是创建和查询不用输入sql语言,而是直接插入。

表是存储在表空间里的。
select * from dba_tables where tablespace_name='表空间名',注意表空间名大小写敏感。
有。8i-10g有oracle的企业管理器,oracle的图形界面,功能类似SQLServer的企业管理器。11g中就没有了。
下载9i或10g的客户端,里面有企业管理器。http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201winsoft.html

select * from dba_tables where tablespace_name='表空间名'

装个PLSQL7.1,这个软件对操作数据库相当的方便。

9i
select table_name,tablespace_name from user_tables;

select table_name,tablespace_name from user_tables;

可以装pl/sql developer 可以做你想要的一系列操作。看table下面就可以看有哪些表,右击可以新建表选中一个表右击可以查询编辑等等