|
Re: change in TEMP tablespace management on 10g [message #140466 is a reply to message #140439] |
Tue, 04 October 2005 06:58 |
smartin
Messages: 1803 Registered: March 2005 Location: Jacksonville, Florida
|
Senior Member |
|
|
Perhaps you had autoextend on and one lone operation caused the temp to grow more than normal? You can create a new smaller one and leave autoextend off to keep it smaller, but of course that might cause problems. Perhaps your new server has less RAM allocated to oracle and it causes more temp file space to be used?
|
|
|
|
|
|
|
|
Re: change in TEMP tablespace management on 10g [message #140760 is a reply to message #140439] |
Wed, 05 October 2005 09:09 |
navaHo
Messages: 6 Registered: October 2005 Location: Moscow, Russia
|
Junior Member |
|
|
select * from v$sort_segment
shows 1 row
TABLESPACE_NAME SEGMENT_FILE SEGMENT_BLOCK EXTENT_SIZE CURRENT_USERS TOTAL_EXTENTS TOTAL_BLOCKS USED_EXTENTS USED_BLOCKS FREE_EXTENTS FREE_BLOCKS ADDED_EXTENTS EXTENT_HITS FREED_EXTENTS FREE_REQUESTS MAX_SIZE MAX_BLOCKS MAX_USED_SIZE MAX_USED_BLOCKS MAX_SORT_SIZE MAX_SORT_BLOCKS RELATIVE_FNO
1 NC_TEMP 0 0 128 0 9999 1279872 0 0 9999 1279872 9999 50928 9999 1 9999 1279872 9999 1279872 9999 1279872 0
i.e. all 10G of TEMP tablespace are full of one huge sort segment
on my old 9.1 server sort_area_size=2097152 but it doesn't matter because both old 9.1 server and 10g have workarea_size_policy set to AUTO
Here I compare:
10g workarea_size_policy=AUTO
pga_aggregate_target=104857600 (100M)
sort_area_size=65536 (bytes)
9.1 workarea_size_policy=AUTO
pga_aggregate_target=157286400 (150M)
sort_area_size=2097152 (bytes)
but even more - I played with pga_aggregate_target on 9.1 and it never resulted in such a strange TEMP TABLESPACE behavior
This seems like some bug in new Orace - did anyboady ever ancounter something like this?
My Oracle instance version is 10.2.0.1.0
[Updated on: Wed, 05 October 2005 09:24] Report message to a moderator
|
|
|
|
|
|
|
|