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: can alter table command indicate data is placed at the end of the table or any free space

Re: can alter table command indicate data is placed at the end of the table or any free space

From: <Kenneth>
Date: Mon, 08 Nov 2004 16:52:20 GMT
Message-ID: <418fa38f.2258421@news.inet.tele.dk>


On 8 Nov 2004 05:05:15 -0800, db2group88_at_yahoo.com wrote:

>in DB2, we can use "alter table" statement to Indicates whether data
>is appended to the end of the table data or placed where free space is
>available in data pages. so on oracle db 10g, do we have similar way
>to do it ? thanks

There is no "alter table" statement to do so, instead you specify it directly with the insert statement(s) on the table

insert /*+append*/ into mytab values (....);

insert /*+append*/ into mytab select * from anothertab;

Received on Mon Nov 08 2004 - 10:52:20 CST

Original text of this message

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