Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: LMT Autoallocation question
Raj,
The AUTOALLOCATE option causes the tablespace to b created with a bitmap
containing one bit for each data block. Oracle controls the extent size.
When we create an object in the tablespace, Oracle will start out by
allocating 64KB extent to that object. As the object grows, more 64KB
extents
will be added.
Use the UNIFORM SIZE clause to manage storage space in extents that r larger
than
one block.
CREATE TABLESPACE <tablespace_name>
DATAFILE '/PATH OF DATAFILE'
SIZE 1000M
EXTENT MANAGEMENT LOCAL UNIFORM SIZE SIZE 50M.
The Uniform extent size will b rounded up to the nearest integer multiple of
the
database block size. Here, the bitmap will contain one bit for each 50MB of
storage
space in the tablespace.
Oracle will allocate the initial extent of 64KB even if we ask for less.
Also remember, begining with the 16th extent, Oracle will increase the
default
extent size from 64KB to 1MB.
Hope this helps.
Samir Sarkar
Oracle DBA - Lennon Team
SchlumbergerSema
Email : samir.sarkar_at_nottingham.sema.slb.com
samir.sarkar_at_sema.co.uk
Phone : +44 (0) 115 - 95 76217
EPABX : +44 (0) 115 - 957 6418 Ext. 76217
Fax : +44 (0) 115 - 957 6018
-----Original Message-----
Sent: 15 November 2001 21:01
To: Multiple recipients of list ORACLE-L
Hi all,
I tried to read through, but couldn't find the exact answer I am looking for. If AUTOALLOCATE is specified for LMT, how does oracle determine the next extent size?
TIA
Raj
QOTD: Any clod can have facts, but having an opinion is an art !
If you have received this email in error please notify the SchlumbergerSema Helpdesk by telephone on +44 (0) 121 627 5600.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: SARKAR, Samir
INET: Samir.SARKAR_at_nottingham.sema.slb.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). Received on Fri Nov 16 2001 - 04:47:15 CST
![]() |
![]() |