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

Home -> Community -> Mailing Lists -> Oracle-L -> Re: TEMP Tablespace problem

Re: TEMP Tablespace problem

From: Tanel Poder <tanel.poder.003_at_mail.ee>
Date: Wed, 01 Oct 2003 07:09:49 -0800
Message-ID: <F001.005D1B0D.20031001070949@fatcity.com>


Where did you look for this file? Use v$tempfile or dba_temp_files.

Anyway, your case is a good reason why not to enable autoextend in temp and rbs tablespaces without extra care.

If you got DBA access to your database, you could:

1) create temporary tablespace new_temp
2) alter database default temporary tablespace new_temp
3) drop tablespace temp including contents and datafiles (might take time)
4) create temporary tablespace temp ...
5) alter database default temporary tablespace temp
6) drop tablespace new_temp including contents and datafiles

If you don't have DBA access nor OS access, then you have to wait until your administrator comes back or hack yourself into serverroom to get physical access to your server.

Tanel.

  This table do not have any file, how I understood this is the table space that the queries uses.   They tell me that if I run a query that need mode that the actual space it will be made that the TEMP tablespace grow.

>>> breitliw_at_centrexcc.com 09/30/03 10:09PM >>>
  If the TEMP tablespace is a temporary tablespace, i.e. made of temp files   rather than datafiles, then you can't offline it. It would have to be   dropped and rebuilt.

  At 07:34 PM 9/30/2003 -0800, you wrote:
>Maybe you can create another temp tablespace (called temp_new) on another
>disk, assign all users to temp_new, then offline the old temp tablespace,
>drop the old temp tablespace, and finally remove the old temp datafiles
>from OS.

  Wolfgang Breitling
  Oracle7, 8, 8i, 9i OCP DBA
  Centrex Consulting Corporation
  http://www.centrexcc.com

  --
  Please see the official ORACLE-L FAQ: http://www.orafaq.net   --
  Author: Wolfgang Breitling
    INET: breitliw_at_centrexcc.com

  Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
  San Diego, California        -- Mailing list and web hosting services
  ---------------------------------------------------------------------
  To REMOVE yourself from this mailing list, send an E-Mail message   to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in   the message BODY, include a line containing: UNSUB ORACLE-L   (or the name of mailing list you want to be removed from). You may   also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Tanel Poder
  INET: tanel.poder.003_at_mail.ee

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Wed Oct 01 2003 - 10:09:49 CDT

Original text of this message

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