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.
 
----- Original Message -----
Sent: Wednesday, October 01, 2003 5:39 PM
Subject: Re: TEMP Tablespace problem

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.


>>> [EMAIL PROTECTED] 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: [EMAIL PROTECTED]

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: [EMAIL PROTECTED] (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).

Reply via email to