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: delete w/o rollback segs???

Re: delete w/o rollback segs???

From: John Blackburn <John.D.Blackburn_at_transport.qld.gov.au>
Date: Wed, 5 Jan 2000 12:44:07 +1000
Message-ID: <84ubae$1ek2@hp013.qdot.qld.gov.au>


Actually, you can truncate some of the rows if you have a partitioned table and all the rows you want to delete are in the one partition and that partition only contains the rows you want to delete.

ALTER TABLE <table name>
TRUNCATE PARTITION <partition name>

<caramel98_at_my-deja.com> wrote in message news:84sk9a$sgm$1_at_nnrp1.deja.com...
> Hi,
>
> You ca use TRUNCATE TABLE table_name.
> This will delete all rows.
>
> You can't delete only some rows without using
> rollback segments. However, you can choose the
> rollback to use with the SET TRANSACTION USE
> ROLLBACK SEGMENT segment_name (or some thing like
> that)
>
> In article <84rm9i$835$1_at_nnrp1.deja.com>,
> bmcgin9709_at_my-deja.com wrote:
> > is it possible to delete from a table and not
> use rollback segments?
> >
> > Sent via Deja.com http://www.deja.com/
> > Before you buy.
> >
>
>
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
Received on Tue Jan 04 2000 - 20:44:07 CST

Original text of this message

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