Re: LMT - Space Management
Quote:
Originally posted by Jr
Create tablespace t1 datafile 'C:\TEST.DBF'
size 11M autoextend on next 1M maxsize unlimited
extent management local uniform size 1M
/
Create tablespace t2 datafile 'C:\TEST2.DBF'
size 3072M autoextend on next 201M maxsize unlimited
extent management local uniform size 10M
/
I think that you are confused about LMT's. The uniform size means that every extent created will be that size. So for t1 You gave it enough room for 1 table with one extent without it having to extend 9 times to allow the second extent. For t2 you gave it enough room for 3 extents before that tablespace needs to extend 5 times so that another extent can be created. If you have a table that is 1gb then it should be in a tablespace with a uniform extent size of 100mb, or possibly even 50mb. You want to set up your tablespaces so that the number of extents is less than 500 preferably less than 100.
Re: LMT - Space Management
Quote:
Originally posted by Jr
Hi All,
extent management local uniform size 10M
extent management local uniform size 1024M
Jr.
Hi,
i was shocked reading the amount of size for unforme-size
Even you have a big segments 1M should be enaugh.
I had very bad expierience reorganizing semgments with parallel degrees > 1
Because Oracle allocates for every parallel process in the new segment 1 Uniform-size. so if uniform -size is to big you have only air in your new segment.
Orca
:cool: