Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: locally managed tbs in 9i and extent sizes
List, I left everything the same except extent size. I thought I needed
larger extents, wrong. The larger the faster it failed on import. I then
went down in extent size. The statement:
create tablespace diamond datafile '/.../diamond_01.dbf' size 500m extent management local uniform size 40k;
works great with lots of space left over. The question is now: How small
can I make the extent size 32k, 16k, or 8k?
How do I determine the smallest extent size on the create tablespace
statement I can use?
thanks,
David Ehresmann.
-----Original Message-----
Sent: Wednesday, April 16, 2003 11:34 AM
To: Multiple recipients of list ORACLE-L
Richard,
But Oracle would coalesce on the fly, as necessary.
I forget the order of the first two (it's been awhile!) but as I recall, Oracle would look for:
yeah, the good old days, when DBAs carved databases out of stone, and buffer cache hit ratios meant something and .... oh wait, what am I thinking!
Rachel
--- Richard Foote <richard.foote_at_bigpond.com> wrote:
> Hi Rachel,
>
> But until the "contiguous" extents get coalesced, they would be not
> be
> treated as contiguous by Oracle.
>
> They indeed were the days... ;)
>
> Cheers
>
> Richard
>
>
> > > more than the size of required extent. To know the largest
> available
> > > contiguous chunk of space, use
> > > ( select max(bytes) from dba_free_space where
> > > tablespace_name='<tablespace name>'; )
> >
> >
> > Actually that's not quite true, because it's possible for
> contiguous
> > extents to be listed in dba_free_space as two separate entries,
> > depending on when they were freed up and if they had been allocated
> at
> > different times.
> >
> > you'd need to see if there is an entry where block_id = prior
> > block_id+blocks
> >
> > back in the days before I used uniform extents, I had a script that
> > generated a report of contiguous space by tablespce. I don't need
> it
> > anymore, LMTs and uniform sizing has allowed me to stop worrying
> about
> > having contiguous space available.
> >
>
>
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Richard Foote
> INET: richard.foote_at_bigpond.com
>
> Fat City Network Services -- 858-538-5051 http://www.fatcity.com
> San Diego, California -- Mailing list and web hosting services
> ---------------------------------------------------------------------
> 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).
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Rachel Carmichael INET: wisernet100_at_yahoo.com Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- 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). -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Ehresmann, David INET: David.Ehresmann_at_ps.net Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- 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 Wed Apr 16 2003 - 16:39:19 CDT