temp tablespace [message #55098] |
Thu, 02 January 2003 21:40 |
Sunil Rohit
Messages: 2 Registered: January 2003
|
Junior Member |
|
|
Sir,
Thanks for the help. I have gone thr' the same procedure and it helps a lot
to me and at last i have solved this problem.
In connection with this i would like to know following :
1) Which operations will make temp tablespace full ?
2) My archivelog mode is off, does it effect temp tablespace to become
full ?
3) How to restrict temp tablespace growth?, because after every month
or say quarter it is not abvisible to delete & recreate temp
tablespace.
Expecting your views on this.
Regards,
Sunil Rohit.
|
|
|
|
|
Re: temp tablespace [message #55107 is a reply to message #55102] |
Fri, 03 January 2003 09:49 |
Sanjay
Messages: 236 Registered: July 2000
|
Senior Member |
|
|
You will use the TEMP tablespace if the SORT_AREA_SIZE is small for the sort to be done in memory.
No, Archive Mode has nothing to do with the TEMP tablespace.
If the TEMP is full, you can either restart the database (if you can) to reset the tablespace or give this command
'alter tablespace temp default storage (pctincrease 0);'
It works.
|
|
|