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: PCTFREE=0 and updates

Re: PCTFREE=0 and updates

From: Daniel Morgan <damorgan_at_exesolutions.com>
Date: Wed, 10 Apr 2002 15:20:35 GMT
Message-ID: <3CB4583D.8E852007@exesolutions.com>


Try this:

CREATE TABLE xyz (
varfield VARCHAR2(10),
charfield CHAR(10));

INSERT INTO xyz
(varfield)
VALUES
('ABC'); COMMIT; SELECT LENGTH(varfield), LENGTH(charfield) FROM xyz;

What do you think?

Is hard disk space that precious?

Daniel Morgan

Robert Eden wrote:

> If I only update statically sized columns in a table ( NUMBER, CHAR (not
> VARCHAR)) can I sent PCTFREE to 0 to avoid the (default) 10% waste? (no
> nulls involved)
>
> The Oracle docs aren't clear on the types of operations that change "row
> size".
>
> Robert
Received on Wed Apr 10 2002 - 10:20:35 CDT

Original text of this message

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