Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: 8.1.7.4 - Linux - Tablespace Issue

Re: 8.1.7.4 - Linux - Tablespace Issue

From: SL <sebastien-louchart_at_wanadoo.fr>
Date: 8 Dec 2005 09:05:34 -0800
Message-ID: <1134061534.897738.60230@z14g2000cwz.googlegroups.com>


select v.segment_name,v.extents,v.max_extents from dba_segments v
where v.segment_name='<my lob segment>' and v.segment_type = 'LOBSEGMENT' If figures are equal then your segment is unable to get new extents allocated because it's already reached the max. May explain.
If you don't specify maxextents while creating your objet, a default valueusually large enough is used.
You can alter the table your LOB is with alter table <table> modify lob (<column>) (storage maxextents unlimited)

HTH

-- 
SL
Received on Thu Dec 08 2005 - 11:05:34 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US