发信人: pantene()
整理人: (2000-04-02 13:00:06), 站内信件
|
【 在 rateng (palan) 的大作中提到: 】
: 如何查出某一用户或某一tablespaces中有何表?
: 我想具体查看它们的结构,请指点。谢谢! ^_^
:
: regard : [email protected]
: .......
select * from dba_tables where owner='USERNAME';
select * from dba_tables where tablespace_name='TABLESPACENAME';
select * from dba_tab_columns where owner='USERNAME' and
table_name='TABLENAME';
dba_indexes
dba_ind_columns
please read 'oracle reference' for more details.
-- ※ 来源:.月光软件站 http://www.moon-soft.com.[FROM: 205.227.43.15]
|
|