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

Home -> Community -> Usenet -> c.d.o.server -> Re: How can i know certain table created in which tablespace

Re: How can i know certain table created in which tablespace

From: David Fitzjarrell <oratune_at_msn.com>
Date: 2 Aug 2001 14:16:27 -0700
Message-ID: <32d39fb1.0108021316.2fbcf4ba@posting.google.com>

"Jordan" <mj_at_nba.com> wrote in message news:<9kbnsk$i6d2_at_imsp212.netvigator.com>...
> How can i know certain table created in which tablespace
> THanks

Jordan,

Try this:

select table_name, tablespace_name
from all_tables
where table_name = '.....'

Substitute the actual table name for the '.....'; you'll see the tablespace where the table has been created.

David Fitzjarrell Received on Thu Aug 02 2001 - 16:16:27 CDT

Original text of this message

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