Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: How to select tables existing in a TABLESPACE ??

Re: How to select tables existing in a TABLESPACE ??

From: Cameron Abbott <cvabbott_at_altavista.com>
Date: Wed, 13 Feb 2002 08:14:06 -0500
Message-ID: <a4dodb$486$1@bcarh8ab.ca.nortel.com>


You need to connect as the DBA user and do a select from DBA_TABLES.

The SQL is

select table_name, owner from DBA_TABLES where tablespace_name = 'YOUR TABLESPACE NAME';

If you do not know the name of the tablespace try this

select table_name, owner, tablespace_name from DBA_TABLES
order by tablespace_name;

Hope this helps.

Cameron
"> How do I know which all tables exists in a particular tablespace? Is there
> some way of doing this ?
>
>
>
Received on Wed Feb 13 2002 - 07:14:06 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US