Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: temporary tablespace
Hi Seema,
Your file is growing because you have set AUTOEXTEND ON. When you shut the instance down, Oracle will release the temp segments, but not actually reduce the file size. You can try shrinking the file (preferably after bouncing the instance) if possible, or you can add a new temp tablespace, make it the users' default temp space, and drop the original one (after checking, of course, that its not being used - see v$sort_segment, v$sort_usage).
HTH,
Mandar.
-----Original Message-----
Sent: Tuesday, April 16, 2002 4:18 AM
To: Multiple recipients of list ORACLE-L
Hi
I created temporary tablespace by following command
create tablespace TEMP datafile
'/xxx/yyy/temp01.dbf' size 800M
autoextend on next 2m
default storage (initial 1024K
next 1024K minextents 1 maxextents 2147483645 pctincrease 0)
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Seema Singh INET: oracledbam_at_hotmail.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- 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-LReceived on Tue Apr 16 2002 - 00:03:21 CDT
(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.com -- Author: Mandar Shete INET: mandar.shete_at_tatainfotech.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- 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).
![]() |
![]() |