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: row migaration

Re: row migaration

From: Mark D Powell <Mark.Powell_at_eds.com>
Date: 4 Jan 2006 07:12:28 -0800
Message-ID: <1136387548.719263.256120@z14g2000cwz.googlegroups.com>


The tumbstones are removed when the row is deleted. Obviously any form of reorganization export/drop and re-create or truncate/import, CTAS (create table as select), or use of DBMS_REDEFINITION (online reorganization) deletes the row.

Tumbstones should be rare. If you have a table with a significant chain count that is not due to rows exceeding the Oracle block size then the table pctfree parameter, which reserves space within a block for updates, was set too low on object creation. You can run a re-org and use more appropriate pctfree value. Then future reorganizations should be unnecessary.

Table and index reorganizations rarely have performance benefits in Oracle; however, reorganization can often be beneficial from a space management point of view. It depends on the DML activity pattern.

HTH -- Mark D Powell -- Received on Wed Jan 04 2006 - 09:12:28 CST

Original text of this message

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