Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Speed up massive delete

RE: Speed up massive delete

From: Jim Conboy <Jim.Conboy_at_trw.com>
Date: Thu, 28 Jun 2001 08:00:51 -0700
Message-ID: <F001.0033BFB0.20010628080935@fatcity.com>

Well, that IS true (actually I think
its NOLOGGING for index creation).  But if you have massive amounts of INSERTS or DELETES, dropping the index first and then re-creating can help.
 
If the number of deletes is truly
large, and you've got spare disk space, and the table can be off-line for a while, you might try CTAS (create table as select) using UNRECOVERABLE, to make a second copy of the table with just the rows you want to keep.  Then drop or rename the old table, rename the new table, and re-create the indexes with NOLOGGING.  In removing 3 million rows from a 9 million row table this method was very fast compared to DELETE.  
Jim
>>> TS2017_at_emirates.com 06/28/01 10:58AM
>>>

Yes that is right. rgds <FONT

size=2>amar -----Original Message----- <FONT 
size=2>From: MHately_at_etech-uk.com [<A 
href="mailto:MHately_at_etech-uk.com">mailto:MHately_at_etech-uk.com] 
Sent: Thursday, June 28, 2001 6:25 PM <FONT size=2>To: Multiple recipients of list ORACLE-L Subject: Re: Speed up massive delete
Ron, How does creating indexes as
UNRECOVERABLE save time when you insert data? As far as I'm aware the only operation it will save time on is the initial creation.
Regards, Mike
|--------+-----------------------> <FONT 
size=2>|       
|          "Ron Rogers" | 
|        
|          <RROGERS_at_galo| 
|        
|          
ttery.org>   | <FONT 
size=2>|        
|                       
| |        
|          
06/28/01     | <FONT 

size=2>|       
|          02:51
PM     | <FONT
size=2>|        
|          
Please       | <FONT 
size=2>|        
|          respond to   
| |        
|          
ORACLE-L     | <FONT 
size=2>|        
|                       
| |--------+-----------------------> <FONT 
size=2> 
>-------------------------------------------------------------------| 
 
|                                                                   
|   |      
To:     Multiple recipients of list
ORACLE-L               
|   |      
<ORACLE-L_at_fatcity.com>                                      
|   |      
cc:     (bcc: Mike
Hately/ETECH)                            
|   |       

Subject:     Re: Speed up massive
delete                    

|  
>-------------------------------------------------------------------| 

Jack Drop the indexes first before you
do the deletes will save you time by not creating logs for the indexes being deleted. On my large activity files I have created the indexes as "Unrecoverable" saving time when I add data or delete data. ROR
mªÖªm
>>> nlzanen1_at_EY.NL 06/28/01 05:45AM >>>
Hi All,
I have to do some pretty big deletes on a test environment and they are estimated to take for ever. <FONT size=2>Are there any options to speed it up? Jack
<FONT

size=2>===================================================================== 
De informatie verzonden in dit e-mailbericht is vertrouwelijk en is uitsluitend bestemd voor de geadresseerde. Openbaarmaking, vermenigvuldiging, verspreiding en/of verstrekking van deze informatie aan derden is, behoudens voorafgaande schriftelijke toestemming van Ernst & Young, niet toegestaan. Ernst & Young staat niet in voor de juiste en volledige overbrenging van de inhoud van een verzonden e-mailbericht, noch voor tijdige ontvangst daarvan. Ernst & Young kan niet garanderen dat een <FONT size=2>verzonden e-mailbericht vrij is van virussen, noch dat e-mailberichten worden overgebracht zonder inbreuk of tussenkomst van onbevoegde derden.
Indien bovenstaand e-mailbericht niet aan u is gericht, verzoeken wij u vriendelijk doch dringend het e-mailbericht te retourneren aan de verzender en het origineel en eventuele kopieën te verwijderen en te vernietigen. Ernst & Young hanteert bij de uitoefening van haar werkzaamheden algemene voorwaarden, waarin een beperking van aansprakelijkheid is opgenomen. De algemene voorwaarden worden u op verzoek kosteloos toegezonden. <FONT
size=2>===================================================================== 
The information contained in this communication is confidential and is intended solely for the use of the individual or entity to whom it is addressed. You should not copy, disclose or distribute this communication without the authority of Ernst & Young. Ernst & Young is neither liable for the proper and complete transmission of the information contained in this communication nor for any delay in its receipt. Ernst & Young does not guarantee that the integrity of this communication has been maintained nor <FONT size=2>that the communication is free of viruses, interceptions or interference.
If you are not the intended recipient of this communication please return the communication to the sender and delete and destroy all copies.
In carrying out its engagements, Ernst & Young applies general terms and conditions, which contain a clause that limits its liability. A copy of these terms and conditions is available on request free of charge. <FONT
size=2>===================================================================== 

Received on Thu Jun 28 2001 - 10:00:51 CDT

Original text of this message

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