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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Question about ORACLE

Status
Not open for further replies.

EM1107

IS-IT--Management
Apr 24, 2002
153
CA
I am new to oracle and I would like to know if there is a way to query the oracle database to get a list of all tables or indexes created on a table space.

thanks in advance for your reply
 
Code:
select * from dba_segments where tablespace_name = 'XXX'
AND segment_type in ('INDEX', 'TABLE');
 


If you are new to Oracle, it's recommended you familiarize yourself with the manuals and their content,
you can find these fine books in the online Oracle Documentation Library. [3eyes]



----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top