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: Can I safely get rid of the EXAMPLE tablespace?

Re: Can I safely get rid of the EXAMPLE tablespace?

From: gazzag <gareth_at_jamms.org>
Date: 11 Jan 2006 01:52:31 -0800
Message-ID: <1136973150.970826.35260@z14g2000cwz.googlegroups.com>


>> I used DBCA to create a "general" database, and I noticed a large
>> (~150MB) tablespace named "EXAMPLE".

>> Can I safely get rid of that tablespace (to get the 150MB back)? If so,
>> what's the easiest way to accomplish that?

Oracle version?

Anyway, if you're sure you don't need it, of course you can drop it. I'd probably double-check with the following couple of queries:

select username
from dba_users
where default_tablespace='EXAMPLE';

and

select owner, segment_name, segment_type from dba_segments
where tablespace_name='EXAMPLE';

If you're then sure you want to drop it:

drop tablespace EXAMPLE;

Depending on the version of Oracle, "and datafiles" can be added to the statement to delete the associated O/S file as well.

HTH -g Received on Wed Jan 11 2006 - 03:52:31 CST

Original text of this message

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