Is there any way to 'free' the temporary tablespace allocated segments other than shut down instance.Will the coalascing command will work for temporary tablespace.
I don't think you can really deallocate or coalesce space fom the temporary tablespace of type 'TEMPORARY'.
The temporary (sort) segment of a given temporary tablespace is created at the time of the first sort operation, which has to write to disk to free up sort space in memory. The first disk sort creates a sort segment in the temporary tablespace. Multiple transactions which need asort on disk, can share the same sort segment, however, they cannot share the same extent. The sort segment expands by allocating new extents. The sort extents are not de-allocated while the instance is running, but are marked as free and can be re-used as required.
Bookmarks