Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I get a list of all the tables within a table space? 1

Status
Not open for further replies.

Sina

Technical User
Jan 2, 2001
309
CA
Dear suppport users,

How can I get a list of all the tables within a table space?

Thank you all
 
Hi Sina:

Code:
Select table_name from all_tables where
tablespace_name = "whatever";

will give you all the tables you have access to; If you have dba privs, then use dba_tables instead ...

[profile]
 
Select table_name from user_tables;

That will show THAT user's tables, usually all in one tablespace. I tried to remain child-like, all I acheived was childish.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top