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 -> CLOB storage uses more than it need

CLOB storage uses more than it need

From: Ed Wong <ewong_at_mail.com>
Date: 30 Jan 2002 18:24:30 -0800
Message-ID: <a5ae1554.0201301824.70d59ce5@posting.google.com>


I have a 5M records table with a big clob column. I allocate this particular clob column to a single tablespace(nothing else uses it). I checked the total size of the clob column it's 60GB. However, it uses 100GB in the tablespace. Why is it? Is it because I set the chunk to 32k?

Table definition:

CREATE TABLE Result
(

        id                      NUMBER(10),
        len                     NUMBER(10),
        result                  CLOB,
        CONSTRAINT pk_Result PRIMARY KEY (id) storage ...
)
TABLESPACE prod_data
storage ...
LOB (result) STORE AS lob_result
(

    TABLESPACE prod_result
    STORAGE (INITIAL 200M NEXT 200M MINEXTENTS 1     MAXEXTENTS UNLIMITED PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1)     CHUNK 32K PCTVERSION 20 CACHE DISABLE STORAGE IN ROW     INDEX lobi_result_output
); Received on Wed Jan 30 2002 - 20:24:30 CST

Original text of this message

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