Return-Path: <oracle-l-bounce@freelists.org>
Received: from air189.startdedicated.com (root@localhost)
 by orafaq.com (8.11.6/8.11.6) with ESMTP id i1IIKoD12104
 for <oracle-l@orafaq.com>; Wed, 18 Feb 2004 12:20:50 -0600
X-ClientAddr: 206.53.239.180
Received: from turing.freelists.org (freelists-180.iquest.net [206.53.239.180])
 by air189.startdedicated.com (8.11.6/8.11.6) with ESMTP id i1IIKno12099
 for <oracle-l@orafaq.com>; Wed, 18 Feb 2004 12:20:49 -0600
Received: from turing (localhost [127.0.0.1])
 by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP
 id 78163394F3F; Wed, 18 Feb 2004 13:22:06 -0500 (EST)
Received: with ECARTIS (v1.0.0; list oracle-l); Wed, 18 Feb 2004 13:20:43 -0500 (EST)
X-Original-To: oracle-l@freelists.org
Delivered-To: oracle-l@freelists.org
Received: from hotmail.com (bay2-f170.bay2.hotmail.com [65.54.247.170])
 by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 0A3CD394D34
 for <oracle-l@freelists.org>; Wed, 18 Feb 2004 13:20:32 -0500 (EST)
Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC;
	 Wed, 18 Feb 2004 10:22:10 -0800
Received: from 128.205.133.126 by by2fd.bay2.hotmail.msn.com with HTTP;
 Wed, 18 Feb 2004 18:22:10 GMT
X-Originating-IP: [128.205.133.126]
X-Originating-Email: [davidb158@hotmail.com]
X-Sender: davidb158@hotmail.com
From: "David Boyd" <davidb158@hotmail.com>
To: oracle-l@freelists.org
Subject: RE: drop temp tablespace
Date: Wed, 18 Feb 2004 13:22:10 -0500
Mime-Version: 1.0
Content-type: text/plain
Message-ID: <BAY2-F170ad2VqKwRPQ000415d0@hotmail.com>
X-OriginalArrivalTime: 18 Feb 2004 18:22:10.0987 (UTC) FILETIME=[1FE9CFB0:01C3F64C]
Content-Transfer-Encoding: 8bit
X-archive-position: 1093
X-ecartis-version: Ecartis v1.0.0
Sender: oracle-l-bounce@freelists.org
Errors-To: oracle-l-bounce@freelists.org
X-original-sender: davidb158@hotmail.com
Precedence: normal
Reply-To: oracle-l@freelists.org
X-list: oracle-l

Thanks all of you who replied my message.  The old temp tablespace has been 
dropped.  It took more than 4 days.


>From: Hemant K Chitale <hkchital@singnet.com.sg>
>Reply-To: oracle-l@freelists.org
>To: oracle-l@freelists.org
>Subject: RE: drop temp tablespace
>Date: Wed, 18 Feb 2004 23:14:58 +0800
>
>
>If you say that DBA_SEGMENTS show 0 rows, how do you get a Used Size for
>the Tablespace ?
>
>Hemant
>At 04:35 PM 17-02-04 -0500, you wrote:
> >Guang,
> >
> >Thanks for your response.
> >
> >Initially I had to 'drop tablespace temp including contents'.  Currently 
>it
> >returns 0 for the query of select count(*) from dba_segments where
> >tablespace_name = 'TEMP'.  I can do 'drop tablespace temp' without 
>including
> >contents option.  However the used size is still increasing.
> >
> >
> > >From: "Guang Mei" <gmei@incyte.com>
> > >Reply-To: oracle-l@freelists.org
> > >To: <oracle-l@freelists.org>
> > >Subject: RE: drop temp tablespace
> > >Date: Tue, 17 Feb 2004 12:52:27 -0500
> > >
> > >After you switch all the users to the new temp ts, make sure there is 
>no
> > >objects sitting in your old temp tablespace:
> > >
> > >select count(*) from dba_segments where tablespace_name = 
><old_temp_ts>;
> > >
> > >if you get 0, then run
> > >
> > >alter tablespace <old_temp_ts> offline;
> > >
> > >-- replace your temp datafiles here:
> > >
> > >alter database datafile '/oracle/u2/oradata/YPD/temp01.dbf' offline;
> > >alter database datafile '/oracle/u2/oradata/YPD/temp02.dbf' offline;
> > >alter database datafile '/oracle/u2/oradata/YPD/temp03.dbf' offline;
> > >alter database datafile '/oracle/u2/oradata/YPD/temp04.dbf' offline;
> > >alter database datafile '/oracle/u2/oradata/YPD/temp05.dbf' offline;
> > >
> > >
> > >drop tablespace <old_temp_ts> ;
> > >
> > >
> > >If this does not work, you proabably have a wait a while and try it 
>again.
> > >If still not working, you might have to bounce the DB.
> > >
> > >HTH.
> > >
> > >Guang
> > >
> > >-----Original Message-----
> > >From: oracle-l-bounce@freelists.org
> > >[mailto:oracle-l-bounce@freelists.org]On Behalf Of David Boyd
> > >Sent: Tuesday, February 17, 2004 12:08 PM
> > >To: oracle-l@freelists.org
> > >Subject: drop temp tablespace
> > >
> > >
> > >Hi List,
> > >
> > >Our TEMP tablespace took Oracle default setting that was auto extending 
>up
> > >to 32 GB.  Last week the tablespace had grown to 18 GB.  I tried to 
>drop
> > >the
> > >tablespace after I removed any body's temporary tablespace to a newly
> > >created temp tablespace with much smaller size.  The dropping process 
>is
> > >very slow.  I started last Friday.  The used size in the old temp
> > >tablespace
> > >had been decreased from 18 GB to 3.8 GB yesterday afternoon.  I issued 
>the
> > >drop command through TOAD job scheduler.  There was one failure with 
>the
> > >job
> > >when I checked this morning.  The dropping process seemed stopped.  I 
>had
> > >to
> > >kill the job.  Now the used size in the old temp tablespace is coming 
>back
> > >slowly even through I issued another dropping command in SQLPLUS.  I 
>was
> > >wondering if any one has any way to drop the temp tablespace quickly.
> > >Thanks in advance.
> > >
> > >_________________________________________________________________
> > >Find and compare great deals on Broadband access at the MSN High-Speed
> > >Marketplace. http://click.atdmt.com/AVE/go/onm00200360ave/direct/01/
> > >
> > >----------------------------------------------------------------
> > >Please see the official ORACLE-L FAQ: http://www.orafaq.com
> > >----------------------------------------------------------------
> > >To unsubscribe send email to:  oracle-l-request@freelists.org
> > >put 'unsubscribe' in the subject line.
> > >--
> > >Archives are at http://www.freelists.org/archives/oracle-l/
> > >FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
> > >-----------------------------------------------------------------
> > >
> > >----------------------------------------------------------------
> > >Please see the official ORACLE-L FAQ: http://www.orafaq.com
> > >----------------------------------------------------------------
> > >To unsubscribe send email to:  oracle-l-request@freelists.org
> > >put 'unsubscribe' in the subject line.
> > >--
> > >Archives are at http://www.freelists.org/archives/oracle-l/
> > >FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
> > >-----------------------------------------------------------------
> >
> >_________________________________________________________________
> >Get fast, reliable access with MSN 9 Dial-up. Click here for Special 
>Offer!
> >http://click.atdmt.com/AVE/go/onm00200361ave/direct/01/
> >
> >----------------------------------------------------------------
> >Please see the official ORACLE-L FAQ: http://www.orafaq.com
> >----------------------------------------------------------------
> >To unsubscribe send email to:  oracle-l-request@freelists.org
> >put 'unsubscribe' in the subject line.
> >--
> >Archives are at http://www.freelists.org/archives/oracle-l/
> >FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
> >-----------------------------------------------------------------
>
>Hemant K Chitale
>Oracle 9i Database Administrator Certified Professional
>http://hkchital.tripod.com  {last updated 24-Jan-04}
>
>
>----------------------------------------------------------------
>Please see the official ORACLE-L FAQ: http://www.orafaq.com
>----------------------------------------------------------------
>To unsubscribe send email to:  oracle-l-request@freelists.org
>put 'unsubscribe' in the subject line.
>--
>Archives are at http://www.freelists.org/archives/oracle-l/
>FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
>-----------------------------------------------------------------

_________________________________________________________________
Stay informed on Election 2004 and the race to Super Tuesday. 
http://special.msn.com/msn/election2004.armx

----------------------------------------------------------------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
----------------------------------------------------------------
To unsubscribe send email to:  oracle-l-request@freelists.org
put 'unsubscribe' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-----------------------------------------------------------------

